From: Robin Dunn Date: Mon, 13 Sep 1999 19:19:57 +0000 (+0000) Subject: Changed HWND --> WXHWND in tooltip.h so it can be included in files X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d098a3572c1812d7a976582a59bf29e529c8a424?ds=inline Changed HWND --> WXHWND in tooltip.h so it can be included in files that don't include windows headers. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/tooltip.h b/include/wx/msw/tooltip.h index 41855799d9..d4a29c4f9c 100644 --- a/include/wx/msw/tooltip.h +++ b/include/wx/msw/tooltip.h @@ -35,7 +35,7 @@ public: void RelayEvent(WXMSG *msg); private: - static HWND hwndTT; + static WXHWND hwndTT; // create the tooltip ctrl for our parent frame if it doesn't exist yet // and return its window handle WXHWND GetToolTipCtrl(); @@ -46,3 +46,4 @@ private: wxString m_text; // tooltip text wxWindow *m_window; // window we're associated with }; +