]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cmdproc.h
Update to Scintilla 1.53
[wxWidgets.git] / include / wx / cmdproc.h
index 13523e077e9f57ec0d9cde3d0c8ce6588cb81884..970922d40ba4208fcacc9e75d7219111db8460d8 100644 (file)
@@ -28,7 +28,7 @@ class WXDLLEXPORT wxMenu;
 class WXDLLEXPORT wxCommand : public wxObject
 {
 public:
-    wxCommand(bool canUndoIt = FALSE, const wxString& name = wxT(""));
+    wxCommand(bool canUndoIt = FALSE, const wxString& name = wxEmptyString);
     ~wxCommand();
 
     // Override this to perform a command
@@ -114,7 +114,7 @@ protected:
 
     int           m_maxNoCommands;
     wxList        m_commands;
-    wxNode*       m_currentCommand;
+    wxList::compatibility_iterator m_currentCommand;
 
 #if wxUSE_MENUS
     wxMenu*       m_commandEditMenu;