Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lintest/myrulib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sources/MyRuLib/FbAlphabet.cpp')
-rw-r--r--sources/MyRuLib/FbAlphabet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/MyRuLib/FbAlphabet.cpp b/sources/MyRuLib/FbAlphabet.cpp
index aadd6023..1d9b285b 100644
--- a/sources/MyRuLib/FbAlphabet.cpp
+++ b/sources/MyRuLib/FbAlphabet.cpp
@@ -38,7 +38,7 @@ void * FbAlphabetThread::Entry()
wxString sql = wxT("SELECT DISTINCT letter, count(id) FROM authors GROUP BY letter ORDER BY letter");
FbCommonDatabase database;
database.JoinThread(this);
- wxSQLite3ResultSet res = database.ExecuteQuery(sql);
+ FbSQLite3ResultSet res = database.ExecuteQuery(sql);
while (res.NextRow()) {
wxString letter = Upper(res.GetString(0).Left(1));
if (letter.IsEmpty()) continue;