projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
test wxExecute() in the sample
[wxWidgets.git]
/
src
/
gtk
/
main.cpp
diff --git
a/src/gtk/main.cpp
b/src/gtk/main.cpp
index a6ea36c74e89cec30bf6c1d5420a694f41aa3b5f..96d7e9e4b681f4c26b12e225e004360846a8729e 100644
(file)
--- a/
src/gtk/main.cpp
+++ b/
src/gtk/main.cpp
@@
-9,21
+9,6
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#include "wx/app.h"
-int wxEntry(int argc, char *argv[]);
+// We don't put main() in the library any more. RR.
-
-#if defined(AIX) || defined(AIX4) || defined(____HPUX__) || defined(NOMAIN)
-
- // main in IMPLEMENT_WX_MAIN in IMPLEMENT_APP in app.h
-
-#else
-
-
-int main(int argc, char* argv[])
-{
- return wxEntry(argc, argv);
-}
-
-#endif