]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use deprecated cast operator to wxList&
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Sep 2005 22:50:26 +0000 (22:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Sep 2005 22:50:26 +0000 (22:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cmdproc.h
include/wx/docview.h

index a74a3df5bf5eadc1178b100d5459d0dab07a82cf..de7d68429c7525d40e189ac6d41d2f7d751f98c4 100644 (file)
@@ -87,7 +87,8 @@ public:
 #endif // wxUSE_MENUS
 
     // command list access
-    wxList& GetCommands() const { return (wxList&) m_commands; }
+    wxList& GetCommands() { return m_commands; }
+    const wxList& GetCommands() const { return m_commands; }
     wxCommand *GetCurrentCommand() const
     {
         return (wxCommand *)(m_currentCommand ? m_currentCommand->GetData() : NULL);
index 2ad8477d49a46c1d3fb95603c86d26ab5c792bcd..13e875ceac1188539d0e346e05e099453e32bdeb 100644 (file)
@@ -126,7 +126,8 @@ public:
 
     virtual bool AddView(wxView *view);
     virtual bool RemoveView(wxView *view);
-    wxList& GetViews() const { return (wxList&) m_documentViews; }
+    wxList& GetViews() { return m_documentViews; }
+    const wxList& GetViews() const { return m_documentViews; }
     wxView *GetFirstView() const;
 
     virtual void UpdateAllViews(wxView *sender = (wxView *) NULL, wxObject *hint = (wxObject *) NULL);