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
This commit is contained in:
Robin Dunn
1999-09-13 19:19:57 +00:00
parent c23bbc11ea
commit d098a3572c

View File

@@ -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
};