add const qualifiers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 16:24:26 +00:00
parent 1fee6e2577
commit 328f5751e8
193 changed files with 2525 additions and 2513 deletions

View File

@@ -43,7 +43,7 @@ public:
report should be processed or @false if the user chose to cancel report
generation or removed all files from it.
*/
bool Show(wxDebugReport& dbgrpt);
bool Show(wxDebugReport& dbgrpt) const;
};
@@ -69,7 +69,7 @@ public:
/**
Returns the full path of the compressed file (empty if creation failed).
*/
const wxString GetCompressedFileName();
const wxString GetCompressedFileName() const;
};
@@ -209,7 +209,7 @@ public:
This method should be used to construct the full name of the files which you
wish to add to the report using AddFile().
*/
const wxString GetDirectory();
const wxString GetDirectory() const;
/**
Retrieves the name (relative to
@@ -217,25 +217,25 @@ public:
file with the given index. If @a n is greater than or equal to the number of
filse, @false is returned.
*/
bool GetFile(size_t n, wxString* name, wxString* desc);
bool GetFile(size_t n, wxString* name, wxString* desc) const;
/**
Gets the current number files in this report.
*/
size_t GetFilesCount();
size_t GetFilesCount() const;
/**
Gets the name used as a base name for various files, by default
wxApp::GetAppName is used.
*/
wxString GetReportName();
wxString GetReportName() const;
/**
Returns @true if the object was successfully initialized. If this method
returns
@false the report can't be used.
*/
bool IsOk();
bool IsOk() const;
/**
Processes this report: the base class simply notifies the user that the
@@ -283,7 +283,7 @@ public:
wxDebugReportPreview::Show for more
information.
*/
bool Show(wxDebugReport& dbgrpt);
bool Show(wxDebugReport& dbgrpt) const;
};