From: Robin Dunn Date: Fri, 8 Aug 2003 22:19:02 +0000 (+0000) Subject: fixed unused local wanring X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c44090df7d361b28257d065d5980da6354111a18?ds=inline fixed unused local wanring git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/helpers.h b/wxPython/src/helpers.h index 449ed32219..17c73fae13 100644 --- a/wxPython/src/helpers.h +++ b/wxPython/src/helpers.h @@ -2114,7 +2114,6 @@ extern wxPyApp *wxPythonApp; bool found; \ wxPyBeginBlockThreads(); \ if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \ - PyObject* ro; \ rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \ } \ wxPyEndBlockThreads(); \