fix typo (missing P2 argument in template)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -366,7 +366,7 @@ public:
|
|||||||
static wxObjScopeGuardImpl3<Obj, MemFun, P1, P2, P3>
|
static wxObjScopeGuardImpl3<Obj, MemFun, P1, P2, P3>
|
||||||
MakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2, P3 p3)
|
MakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2, P3 p3)
|
||||||
{
|
{
|
||||||
return wxObjScopeGuardImpl3<Obj, MemFun, P1, P3>(obj, memFun, p1, p2, p3);
|
return wxObjScopeGuardImpl3<Obj, MemFun, P1, P2, P3>(obj, memFun, p1, p2, p3);
|
||||||
}
|
}
|
||||||
|
|
||||||
~wxObjScopeGuardImpl3() { wxPrivateOnScopeExit(*this); }
|
~wxObjScopeGuardImpl3() { wxPrivateOnScopeExit(*this); }
|
||||||
|
Reference in New Issue
Block a user