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/FbFrameThread.h')
-rw-r--r--sources/MyRuLib/FbFrameThread.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/MyRuLib/FbFrameThread.h b/sources/MyRuLib/FbFrameThread.h
index 3ea7709d..557e5f63 100644
--- a/sources/MyRuLib/FbFrameThread.h
+++ b/sources/MyRuLib/FbFrameThread.h
@@ -2,7 +2,7 @@
#define __FBFRAMETHREAD_H__
#include <wx/wx.h>
-#include <wx/wxsqlite3.h>
+#include "wx/FbSQLite3.h"
#include "FbThread.h"
#include "FbDatabase.h"
#include "FbFilterObj.h"
@@ -16,7 +16,7 @@ public:
class FbFrameThread : public FbThread
{
public:
- static int GetCount(wxSQLite3Database &database, int code);
+ static int GetCount(FbSQLite3Database &database, int code);
FbFrameThread(wxEvtHandler * frame, const wxString &counter)
: FbThread(wxTHREAD_JOINABLE), m_frame(frame), m_counter(counter) {}
@@ -28,8 +28,8 @@ public:
protected:
static wxString GetOrder(int order, const wxString &standart);
- void CreateCounter(wxSQLite3Database &database, const wxString &sql);
- virtual void MakeModel(wxSQLite3ResultSet &result) {}
+ void CreateCounter(FbSQLite3Database &database, const wxString &sql);
+ virtual void MakeModel(FbSQLite3ResultSet &result) {}
protected:
wxEvtHandler * m_frame;