]> git.saurik.com Git - wxWidgets.git/commitdiff
wxMGL build fix.
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 23 May 2005 13:12:02 +0000 (13:12 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 23 May 2005 13:12:02 +0000 (13:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/helpview/src/helpview.h

index d4fc4cde2ec147ed0fd4064eab262d03960fe2ae..ded9b29dbe47ff27dd4c363d1b7c0aec615f1dd7 100644 (file)
@@ -20,7 +20,7 @@
 
 // If 1, start a server to allow this to be used
 // as an external help viewer.
-#if defined(__WXMAC__) && !defined(__UNIX__)
+#if ( defined(__WXMAC__) || defined(__WXMGL__) ) && !defined(__UNIX__)
 #define hvUSE_IPC 0
 #else
 #define hvUSE_IPC 1
@@ -66,12 +66,12 @@ public:
 
 private:
     wxHtmlHelpController*   m_helpController;
-    
+
 #if hvUSE_IPC
     wxList                  m_connections;
     hvServer*               m_server;
 #endif
-    
+
 };
 
 #if hvUSE_IPC