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/FbMainFrame.h')
-rw-r--r--sources/MyRuLib/FbMainFrame.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/sources/MyRuLib/FbMainFrame.h b/sources/MyRuLib/FbMainFrame.h
index 484c6465..7bd0df45 100644
--- a/sources/MyRuLib/FbMainFrame.h
+++ b/sources/MyRuLib/FbMainFrame.h
@@ -46,8 +46,13 @@ class FbMainFrame : public wxFrame
void OpenClss(int code, bool select = true);
wxWindow * CreateFrame(wxWindowID id, bool select = false);
private:
- FbSearchCtrl * m_FindAuthor;
- FbSearchCtrl * m_FindTitle;
+ #ifdef __WXMAC__
+ wxSearchCtrl * m_FindAuthor;
+ wxSearchCtrl * m_FindTitle;
+ #else
+ FbSearchCtrl * m_FindAuthor;
+ FbSearchCtrl * m_FindTitle;
+ #endif
ProgressBar * m_ProgressBar;
wxAuiManager m_FrameManager;
FbAuiNotebook m_FrameNotebook;