]> git.saurik.com Git - wxWidgets.git/commitdiff
SN: Use wxDummyChar only if __VISAGECPP__ is defined.
authorStefan Neis <Stefan.Neis@t-online.de>
Fri, 14 Jan 2000 22:37:39 +0000 (22:37 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Fri, 14 Jan 2000 22:37:39 +0000 (22:37 +0000)
        Changed #ifdef wxUSE_UNICODE in ~wxApp() to #if wxUSE_UNICODE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/app.cpp

index 7cb3bd50e67a802fcf359cc7835876020478b808..3e752ba5ff84a10761bf05d0b3f2edb84b5e9ef5 100644 (file)
@@ -164,7 +164,7 @@ bool wxApp::Initialize(
 
     // This is to foil optimizations in Visual C++ that throw out dummy.obj.
     // PLEASE DO NOT ALTER THIS.
-#if !defined(WXMAKINGDLL)
+#if !defined(WXMAKINGDLL) && defined(__VISAGECPP__)
     extern char wxDummyChar;
     if (wxDummyChar) wxDummyChar++;
 #endif
@@ -510,7 +510,7 @@ wxApp::wxApp()
 
 wxApp::~wxApp()
 {
-#ifdef wxUSE_UNICODE
+#if wxUSE_UNICODE
     // Delete command-line args
     int i;
     for (i = 0; i < argc; i++)