From: Paul Cornett Date: Sun, 7 May 2006 01:17:16 +0000 (+0000) Subject: unused variables/declarations X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4fab51ddffe9e494026370bca40cb377fe19ddbd unused variables/declarations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/mdi.cpp b/src/msw/mdi.cpp index 716f22007b..5b7dd5e75e 100644 --- a/src/msw/mdi.cpp +++ b/src/msw/mdi.cpp @@ -63,11 +63,8 @@ extern wxMenu *wxCurrentPopupMenu; extern const wxChar *wxMDIFrameClassName; // from app.cpp extern const wxChar *wxMDIChildFrameClassName; extern const wxChar *wxMDIChildFrameClassNameNoRedraw; -extern void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win); extern void wxRemoveHandleAssociation(wxWindow *win); -static HWND invalidHandle = 0; - // --------------------------------------------------------------------------- // constants // --------------------------------------------------------------------------- @@ -1176,8 +1173,6 @@ bool wxMDIChildFrame::MSWTranslateMessage(WXMSG* msg) void wxMDIChildFrame::MSWDestroyWindow() { - invalidHandle = GetHwnd(); - wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent(); // Must make sure this handle is invalidated (set to NULL) since all sorts @@ -1191,8 +1186,6 @@ void wxMDIChildFrame::MSWDestroyWindow() if (parent->GetActiveChild() == (wxMDIChildFrame*) NULL) ResetWindowStyle((void*) NULL); - invalidHandle = 0; - if (m_hMenu) { ::DestroyMenu((HMENU) m_hMenu); diff --git a/src/msw/treectrl.cpp b/src/msw/treectrl.cpp index 01ab371bf0..e2c37947cd 100644 --- a/src/msw/treectrl.cpp +++ b/src/msw/treectrl.cpp @@ -2815,8 +2815,6 @@ bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) // with many items is just too slow) NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam; - wxTreeItemId item = event.m_item; - wxTreeItemParam *param = (wxTreeItemParam *)tv->itemOld.lParam; delete param;