automated ifacecheck fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56577 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-29 15:34:31 +00:00
parent 0c61ab6f66
commit 5267aefd85
42 changed files with 214 additions and 241 deletions

View File

@@ -157,12 +157,12 @@ public:
/**
Displays help window and focuses contents panel.
*/
void DisplayContents();
virtual bool DisplayContents();
/**
Displays help window and focuses index panel.
*/
void DisplayIndex();
bool DisplayIndex();
/**
Displays the help window, focuses search panel and starts searching.
@@ -180,8 +180,8 @@ public:
/**
Reads the controller's setting (position of window, etc.)
*/
void ReadCustomization(wxConfigBase* cfg,
wxString path = wxEmptyString);
virtual void ReadCustomization(wxConfigBase* cfg,
const wxString& path = wxEmptyString);
/**
Sets the path for storing temporary files - cached binary versions of index and
@@ -220,8 +220,8 @@ public:
/**
Stores controllers setting (position of window etc.)
*/
void WriteCustomization(wxConfigBase* cfg,
wxString path = wxEmptyString);
virtual void WriteCustomization(wxConfigBase* cfg,
const wxString& path = wxEmptyString);
};