added missing const

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12260 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-11-02 07:13:17 +00:00
parent e84010cf65
commit 4538b3f1b0
3 changed files with 10 additions and 10 deletions

View File

@@ -25,8 +25,8 @@
#endif
#ifndef NO_GUI
#include <wx/help.h>
#include <wx/timer.h>
#include "wx/help.h"
#include "wx/timer.h"
#endif
#if defined(NO_GUI) || defined(__UNIX__)
@@ -1075,7 +1075,7 @@ bool Go(void)
return FALSE;
}
void OnError(char *msg)
void OnError(const char *msg)
{
errorCount++;
@@ -1100,7 +1100,7 @@ void OnError(char *msg)
#endif // NO_GUI
}
void OnInform(char *msg)
void OnInform(const char *msg)
{
#ifdef NO_GUI
cout << msg << "\n";