]> git.saurik.com Git - wxWidgets.git/commitdiff
Added IsEditCancelled/SetEditCanceled
authorRobin Dunn <robin@alldunn.com>
Sat, 18 Oct 2003 04:32:41 +0000 (04:32 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 18 Oct 2003 04:32:41 +0000 (04:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/controls2.i

index 9096bc7f57cdafed4fc1e1157affb7378bca06ab..a75f3668d4c88d6411effacae47bf924e530c56c 100644 (file)
@@ -374,6 +374,10 @@ public:
 
     long GetCacheFrom();
     long GetCacheTo();
+
+    // was label editing canceled? (for wxEVT_COMMAND_LIST_END_LABEL_EDIT only)
+    bool IsEditCancelled() const { return m_editCancelled; }
+    void SetEditCanceled(bool editCancelled) { m_editCancelled = editCancelled; }
 };