From: Vadim Zeitlin Date: Sun, 30 Sep 2012 22:26:36 +0000 (+0000) Subject: Make stc sample startup faster. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1d178139b297516b20c4a0e156cb34cdc50fdffa Make stc sample startup faster. Don't show "About" dialog on startup, this has nothing to do with the purpose of this sample and is just annoying. Also, don't select the entire file after opening it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/stc/stctest.cpp b/samples/stc/stctest.cpp index ff590d1b12..599722d151 100644 --- a/samples/stc/stctest.cpp +++ b/samples/stc/stctest.cpp @@ -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 () {