X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5774198c7f897ec019b1d22cc787c2909f06cb0d..08b97268061292f7c3794dae243a6490b23a42f1:/utils/configtool/src/wxconfigtool.h diff --git a/utils/configtool/src/wxconfigtool.h b/utils/configtool/src/wxconfigtool.h index ef75fb7f99..989c5c3b09 100644 --- a/utils/configtool/src/wxconfigtool.h +++ b/utils/configtool/src/wxconfigtool.h @@ -12,10 +12,6 @@ #ifndef _AP_WXCONFIGTOOL_H_ #define _AP_WXCONFIGTOOL_H_ -#ifdef __GNUG__ -#pragma interface "wxconfigtool.cpp" -#endif - #include "wx/docview.h" #include "wx/help.h" #include "wx/app.h" @@ -44,7 +40,7 @@ public: ctApp(); /// Destructor. - ~ctApp(); + ~ctApp(){}; // Accessors @@ -63,13 +59,13 @@ public: /// Returns the notebook window. wxNotebook* GetNotebookWindow() { return m_notebookWindow; } - /// Returns TRUE if the application should show tooltips. + /// Returns true if the application should show tooltips. virtual bool UsingTooltips(); /// Returns the help controller object for the manual. wxHelpControllerBase& GetHelpController() { return *m_helpController; } - /// Returns the help controller object for the wxWindows reference manual. + /// Returns the help controller object for the wxWidgets reference manual. wxHelpControllerBase& GetReferenceHelpController() { return *m_helpControllerReference; } /// Returns the document manager object. @@ -92,7 +88,7 @@ public: /// Saves config info to the registry or a file. virtual bool SaveConfig(); - /// The help controller needs to be cleared before wxWindows + /// The help controller needs to be cleared before wxWidgets /// cleanup happens. void ClearHelpControllers() ;