*** empty log message ***

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1999-09-13 19:20:10 +00:00
parent d098a3572c
commit 18ba9da6b9

View File

@@ -36,7 +36,7 @@
#include <commctrl.h>
#endif
HWND wxToolTip::hwndTT = NULL;
WXHWND wxToolTip::hwndTT = NULL;
// ----------------------------------------------------------------------------
// private classes
@@ -51,7 +51,7 @@ public:
wxToolInfo(wxWindow *win)
{
// initialize all members
#ifdef __GNUWIN32__ && !defined(wxUSE_NORLANDER_HEADERS)
#if __GNUWIN32__ && !defined(wxUSE_NORLANDER_HEADERS)
memset(this, 0, sizeof(TOOLINFO));
#else
::ZeroMemory(this, sizeof(TOOLINFO));
@@ -80,8 +80,8 @@ inline LRESULT SendTooltipMessage(WXHWND hwnd,
// send a message to all existing tooltip controls
static void SendTooltipMessageToAll(WXHWND hwnd,
UINT msg,
WPARAM wParam,
UINT msg,
WPARAM wParam,
LPARAM lParam)
{
if ( hwnd )
@@ -117,13 +117,14 @@ WXHWND wxToolTip::GetToolTipCtrl()
{
if ( !hwndTT )
{
hwndTT = ::CreateWindow(TOOLTIPS_CLASS,
hwndTT = (WXHWND)::CreateWindow(TOOLTIPS_CLASS,
(LPSTR)NULL,
TTS_ALWAYSTIP,
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
NULL, (HMENU)NULL,
wxGetInstance(), NULL);
wxGetInstance(),
NULL);
}
return (WXHWND)hwndTT;