git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48865
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
public:
wxScopeGuardImplBase() : m_wasDismissed(false) { }
public:
wxScopeGuardImplBase() : m_wasDismissed(false) { }
+ wxScopeGuardImplBase(const wxScopeGuardImplBase& other)
+ : m_wasDismissed(other.m_wasDismissed)
+ {
+ other.Dismiss();
+ }
+
void Dismiss() const { m_wasDismissed = true; }
// for OnScopeExit() only (we can't make it friend, unfortunately)!
void Dismiss() const { m_wasDismissed = true; }
// for OnScopeExit() only (we can't make it friend, unfortunately)!
protected:
~wxScopeGuardImplBase() { }
protected:
~wxScopeGuardImplBase() { }
- wxScopeGuardImplBase(const wxScopeGuardImplBase& other)
- : m_wasDismissed(other.m_wasDismissed)
- {
- other.Dismiss();
- }
-
// must be mutable for copy ctor to work
mutable bool m_wasDismissed;
// must be mutable for copy ctor to work
mutable bool m_wasDismissed;