X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d38e8d5f34262fa688cd0e5d397a2201978e5fa7..d9e2e4c2425b8338ff6e6cd2fb62438c9fb2a12b:/include/wx/msw/dde.h diff --git a/include/wx/msw/dde.h b/include/wx/msw/dde.h index 56813e4340..1c9627d55a 100644 --- a/include/wx/msw/dde.h +++ b/include/wx/msw/dde.h @@ -78,6 +78,8 @@ public: wxChar* m_sendingData; int m_dataSize; wxIPCFormat m_dataType; + + DECLARE_NO_COPY_CLASS(wxDDEConnection) }; class WXDLLEXPORT wxDDEServer: public wxServerBase @@ -98,12 +100,15 @@ class WXDLLEXPORT wxDDEServer: public wxServerBase wxDDEConnection *FindConnection(WXHCONV conv); bool DeleteConnection(WXHCONV conv); inline wxString& GetServiceName(void) const { return (wxString&) m_serviceName; } - inline wxList& GetConnections(void) const { return (wxList&) m_connections; } - - protected: - int m_lastError; - wxString m_serviceName; - wxList m_connections; + inline wxDDEConnectionList& GetConnections(void) const + { + return (wxDDEConnectionList&) m_connections; + } + +protected: + int m_lastError; + wxString m_serviceName; + wxDDEConnectionList m_connections; }; class WXDLLEXPORT wxDDEClient: public wxClientBase @@ -124,11 +129,15 @@ class WXDLLEXPORT wxDDEClient: public wxClientBase // Find/delete wxDDEConnection corresponding to the HCONV wxDDEConnection *FindConnection(WXHCONV conv); bool DeleteConnection(WXHCONV conv); - inline wxList& GetConnections(void) const { return (wxList&) m_connections; } - protected: - int m_lastError; - wxList m_connections; + inline wxDDEConnectionList& GetConnections(void) const + { + return (wxDDEConnectionList&) m_connections; + } + +protected: + int m_lastError; + wxDDEConnectionList m_connections; }; void WXDLLEXPORT wxDDEInitialize();