#ifndef _AP_WXCONFIGTOOL_H_
#define _AP_WXCONFIGTOOL_H_
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "wxconfigtool.cpp"
#endif
/// 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.
/// 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() ;