From: Francesco Montorsi Date: Thu, 9 Oct 2008 14:23:06 +0000 (+0000) Subject: fix typo (missing P2 argument in template) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/22c5cac637b786f92a668684ef85918931fdab5f fix typo (missing P2 argument in template) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/scopeguard.h b/include/wx/scopeguard.h index a3a4fffa7e..baa33fb799 100644 --- a/include/wx/scopeguard.h +++ b/include/wx/scopeguard.h @@ -366,7 +366,7 @@ public: static wxObjScopeGuardImpl3 MakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2, P3 p3) { - return wxObjScopeGuardImpl3(obj, memFun, p1, p2, p3); + return wxObjScopeGuardImpl3(obj, memFun, p1, p2, p3); } ~wxObjScopeGuardImpl3() { wxPrivateOnScopeExit(*this); }