small wxGTK compilation fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-30 20:33:30 +00:00
parent 4f4a180e21
commit abca8ebff1
6 changed files with 27 additions and 27 deletions

View File

@@ -31,6 +31,8 @@
#include "wx/thread.h"
#endif
#include "wx/init.h"
#include "wx/ptr_scpd.h"
#include "wx/module.h"
@@ -409,7 +411,7 @@ int wxEntryReal(int& argc, wxChar **argv)
extern unsigned long wxGlobalSEHandler();
int wxEntry(int argc, wxChar **argv)
int wxEntry(int& argc, wxChar **argv)
{
__try
{
@@ -429,7 +431,7 @@ int wxEntry(int argc, wxChar **argv)
#if wxUSE_UNICODE
// as with wxEntryStart, we provide an ANSI wrapper
int wxEntry(int argc, char **argv)
int wxEntry(int& argc, char **argv)
{
ConvertArgsToUnicode(argc, argv);