]> git.saurik.com Git - wxWidgets.git/commitdiff
warning fixes
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Aug 2001 20:13:14 +0000 (20:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Aug 2001 20:13:14 +0000 (20:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/fdrepdlg.cpp
src/msw/window.cpp

index 05df5ad6164735f6ed0b9039b0b76f005acab729..0d34834244735f4eee9afda48dc78fcfa7bd881d 100644 (file)
@@ -345,7 +345,7 @@ wxFindReplaceDialog::~wxFindReplaceDialog()
     m_isShown = FALSE;
 
     // and from destroying our window
-    m_hWnd = NULL;
+    m_hWnd = (WXHWND)NULL;
 }
 
 bool wxFindReplaceDialog::Create(wxWindow *parent,
index c9a9494c0e4d6251d0465d09a5e0acd424cbf32f..73cb9e08d3a897d449d0754f32757a463988702d 100644 (file)
@@ -156,11 +156,8 @@ static void TranslateKbdEventToMouse(wxWindowMSW *win,
 // get the text metrics for the current font
 static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win);
 
-// check if the mouse is in the window or its child
-static bool IsMouseInWindow(HWND hwnd);
-
 // wrapper around BringWindowToTop() API
-static inline wxBringWindowToTop(HWND hwnd)
+static inline void wxBringWindowToTop(HWND hwnd)
 {
 #ifdef __WXMICROWIN__
     // It seems that MicroWindows brings the _parent_ of the window to the top,