]> git.saurik.com Git - wxWidgets.git/commitdiff
wxTextCtrl::SetValue() sets m_modified to FALSE.
authorRobert Roebling <robert@roebling.de>
Mon, 8 Apr 2002 21:48:06 +0000 (21:48 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 8 Apr 2002 21:48:06 +0000 (21:48 +0000)
  Make scrollbars take MSW's "empty" look on start-up.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/x11/textctrl.cpp

index 95cd5e86af26ee17da7bc842dca93329b840c59d..50329f67fe389cd0b9ccd63d9041fd3ffc9133b6 100644 (file)
@@ -249,6 +249,8 @@ bool wxTextCtrl::Create( wxWindow *parent,
     // We create an input handler since it might be useful
     CreateInputHandler(wxINP_HANDLER_TEXTCTRL);
     
+    MyAdjustScrollbars();
+    
     return TRUE;
 }
 
@@ -271,7 +273,7 @@ wxString wxTextCtrl::GetValue() const
 
 void wxTextCtrl::SetValue(const wxString& value)
 {
-    m_modified = TRUE;
+    m_modified = FALSE;
 
     if ((GetWindowStyle() & wxTE_MULTILINE) == 0)
     {