Changeset 56197

Show
Ignore:
Timestamp:
10/09/08 07:23:06 (6 weeks ago)
Author:
FM
Message:

fix typo (missing P2 argument in template)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wxWidgets/trunk/include/wx/scopeguard.h

    r56194 r56197  
    367367        MakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2, P3 p3) 
    368368    { 
    369         return wxObjScopeGuardImpl3<Obj, MemFun, P1, P3>(obj, memFun, p1, p2, p3); 
     369        return wxObjScopeGuardImpl3<Obj, MemFun, P1, P2, P3>(obj, memFun, p1, p2, p3); 
    370370    } 
    371371