]> git.saurik.com Git - wxWidgets.git/commitdiff
unused member variables
authorPaul Cornett <paulcor@bullseye.com>
Tue, 9 May 2006 16:54:24 +0000 (16:54 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Tue, 9 May 2006 16:54:24 +0000 (16:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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

index e2041cb9631762a71128fb59319e3ecf61b60fe9..b801780273b6a167a977a876addde03c342c1a44 100644 (file)
@@ -186,10 +186,8 @@ private:
     void ChangeFontGlobally();
 
     GtkWidget  *m_text;
-    GtkWidget  *m_vScrollbar;
 
     bool        m_modified:1;
-    bool        m_vScrollbarVisible:1;
     bool        m_ignoreNextUpdate:1;
 
     // Our text buffer. Convenient, and holds the buffer while using
index 2b60a1a8f67d4e6f096580a23a8a11678eadbf52..727cb2ec77fc8527fdf03578e73cf7d3c983352c 100644 (file)
@@ -513,8 +513,7 @@ void wxTextCtrl::Init()
     m_ignoreNextUpdate =
     m_modified = false;
     SetUpdateFont(false);
-    m_text =
-    m_vScrollbar = (GtkWidget *)NULL;
+    m_text = NULL;
     m_frozenness = 0;
     m_gdkHandCursor = NULL;
     m_gdkXTermCursor = NULL;
@@ -561,9 +560,6 @@ bool wxTextCtrl::Create( wxWindow *parent,
         return false;
     }
 
-
-    m_vScrollbarVisible = false;
-
     bool multi_line = (style & wxTE_MULTILINE) != 0;
 
     if (multi_line)