]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/stc/stctest.cpp
use default position, not 0, 0
[wxWidgets.git] / contrib / samples / stc / stctest.cpp
index 93711b1d1c0789585e9b13e20c10b7f70c906c0e..41aeba8d52713e622ba9b2ae012903c2a6fd8b19 100644 (file)
@@ -301,7 +301,7 @@ AppFrame::AppFrame (const wxString &title)
     SetBackgroundColour (_T("WHITE"));
 
     // about box shown for 1 seconds
-    AppAbout (this, 1000);
+    AppAbout dlg(this, 1000);
 
     // create menu
     m_menuBar = new wxMenuBar;
@@ -329,7 +329,7 @@ void AppFrame::OnClose (wxCloseEvent &event) {
 }
 
 void AppFrame::OnAbout (wxCommandEvent &WXUNUSED(event)) {
-    AppAbout (this);
+    AppAbout dlg(this);
 }
 
 void AppFrame::OnExit (wxCommandEvent &WXUNUSED(event)) {
@@ -387,7 +387,7 @@ void AppFrame::OnFileClose (wxCommandEvent &WXUNUSED(event)) {
 // properties event handlers
 void AppFrame::OnProperties (wxCommandEvent &WXUNUSED(event)) {
     if (!m_edit) return;
-    EditProperties (m_edit, 0);
+    EditProperties dlg(m_edit, 0);
 }
 
 // print event handlers