]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/stc/stctest.cpp
Allow specifying -1 as font size to mean "default" in wxMSW.
[wxWidgets.git] / samples / stc / stctest.cpp
index ff590d1b12ae66547eaed135a50454540ffc6481..599722d1519e5af2483084d984c4e95e04ae356b 100644 (file)
@@ -318,9 +318,6 @@ AppFrame::AppFrame (const wxString &title)
     SetTitle (*g_appname);
     SetBackgroundColour (wxT("WHITE"));
 
-    // about box shown for 1 seconds
-    AppAbout dlg(this, 1000);
-
     // create menu
     m_menuBar = new wxMenuBar;
     CreateMenu ();
@@ -330,7 +327,6 @@ AppFrame::AppFrame (const wxString &title)
     m_edit->SetFocus();
 
     FileOpen (wxT("stctest.cpp"));
-    m_edit->SetSelection(0,0);
 }
 
 AppFrame::~AppFrame () {
@@ -588,6 +584,7 @@ void AppFrame::FileOpen (wxString fname)
 {
     wxFileName w(fname); w.Normalize(); fname = w.GetFullPath();
     m_edit->LoadFile (fname);
+    m_edit->SelectNone();
 }
 
 wxRect AppFrame::DeterminePrintSize () {