]> git.saurik.com Git - wxWidgets.git/commitdiff
wxX11 STL-ification.
authorMattia Barbon <mbarbon@cpan.org>
Thu, 11 Sep 2003 21:01:31 +0000 (21:01 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Thu, 11 Sep 2003 21:01:31 +0000 (21:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/x11/textctrl.h
src/x11/textctrl.cpp

index 3b4b48ac40aba1fff64972058d39f972b8c02664..1b8f0143a2520066a141c8afd077061372f97282 100644 (file)
@@ -24,7 +24,7 @@
 #endif
 
 #include "wx/scrolwin.h"
-#include "wx/dynarray.h"
+#include "wx/arrstr.h"
 #include "wx/datetime.h"
 
 //-----------------------------------------------------------------------------
@@ -101,6 +101,7 @@ public:
                long style = 0,
                const wxValidator& validator = wxDefaultValidator,
                const wxString &name = wxTextCtrlNameStr);
+    virtual ~wxTextCtrl();
 
     bool Create(wxWindow *parent,
                 wxWindowID id,
index 84b9ae0290e46edfaedf7dce324c5243f2a28d04..6f74efadb201bba163ff3bd20552b453ce8053ae 100644 (file)
@@ -157,8 +157,6 @@ void wxTextCtrl::Init()
     m_editable = TRUE;
     m_modified = FALSE;
     
-    m_undos.DeleteContents( TRUE );
-    
     m_lang = wxSOURCE_LANG_NONE;
     
     m_capturing = FALSE;
@@ -202,6 +200,11 @@ wxTextCtrl::wxTextCtrl( wxWindow *parent,
     Create( parent, id, value, pos, size, style, validator, name );
 }
 
+wxTextCtrl::~wxTextCtrl()
+{
+    WX_CLEAR_LIST(wxList, m_undos);
+}
+
 bool wxTextCtrl::Create( wxWindow *parent,
                          wxWindowID id,
                          const wxString &value,
@@ -398,7 +401,7 @@ void wxTextCtrl::Clear()
     
     SetScrollbars( m_charWidth, m_lineHeight, 0, 0, 0, 0 );
     Refresh();
-    m_undos.Clear();
+    WX_CLEAR_LIST(wxList, m_undos);
 }
 
 void wxTextCtrl::Replace(long from, long to, const wxString& value)
@@ -795,12 +798,13 @@ void wxTextCtrl::Undo()
 {
     if (m_undos.GetCount() == 0) return;
     
-    wxList::Node *node = m_undos.Item( m_undos.GetCount()-1 );
+    wxList::compatibility_iterator node = m_undos.Item( m_undos.GetCount()-1 );
     wxSourceUndoStep *undo = (wxSourceUndoStep*) node->GetData();
     
     undo->Undo();
-    
-    delete node;
+
+    delete undo;
+    m_undos.Erase( node );
     
     m_modified = TRUE;
 }