Better MGL fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-05-30 09:24:08 +00:00
parent 73f91e1e00
commit 62d1f48bac
2 changed files with 13 additions and 23 deletions

View File

@@ -16,20 +16,10 @@
#pragma interface "help.cpp"
#endif
#define hvVERSION 1.03
#define hvVERSION 1.04
// If 1, start a server to allow this to be used
// as an external help viewer.
#if ( defined(__WXMAC__) || defined(__WXMGL__) ) && !defined(__UNIX__)
#define hvUSE_IPC 0
#else
#define hvUSE_IPC 1
#endif
#if hvUSE_IPC
#if wxUSE_IPC
#include <wx/ipc.h>
class hvConnection;
class hvServer;
#endif
@@ -59,7 +49,7 @@ public:
/// Returns the help controller.
wxHtmlHelpController* GetHelpController() { return m_helpController; }
#if hvUSE_IPC
#if wxUSE_IPC
/// Returns the list of connections.
wxList& GetConnections() { return m_connections; }
#endif
@@ -67,14 +57,14 @@ public:
private:
wxHtmlHelpController* m_helpController;
#if hvUSE_IPC
#if wxUSE_IPC
wxList m_connections;
hvServer* m_server;
#endif
};
#if hvUSE_IPC
#if wxUSE_IPC
class hvConnection : public wxConnection
{
public: