]> git.sur5r.net Git - bacula/bacula/commitdiff
Removed references to the old application name (wx-gui).
authorNicolas Boichat <nicolas@boichat.ch>
Fri, 16 Apr 2004 17:05:49 +0000 (17:05 +0000)
committerNicolas Boichat <nicolas@boichat.ch>
Fri, 16 Apr 2004 17:05:49 +0000 (17:05 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1214 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/wx-console/main.cpp

index b0e1349cbb8f6a840b70f162eae821ed498e7692..56aac33f6d49023e0755a223b34b1e6ce2338b90 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *
- *    Bacula wx GUI application
+ *    Bacula wx-console application
  *
  *    Nicolas Boichat, April 2004
  *
 // resources
 // ----------------------------------------------------------------------------
 
-
 class MyApp : public wxApp
 {
 public:
    virtual bool OnInit();
 };
 
-IMPLEMENT_APP(MyApp)
-
 // ============================================================================
 // implementation
 // ============================================================================
 
+IMPLEMENT_APP(MyApp)
+
 // ----------------------------------------------------------------------------
 // the application class
 // ----------------------------------------------------------------------------
@@ -71,14 +70,14 @@ IMPLEMENT_APP(MyApp)
 // 'Main program' equivalent: the program execution "starts" here
 bool MyApp::OnInit()
 {
-   wxbMainFrame *frame = wxbMainFrame::CreateInstance(_T("Minimal wxWindows App"),
+   wxbMainFrame *frame = wxbMainFrame::CreateInstance(_T("Bacula wx-console"),
                          wxPoint(50, 50), wxSize(780, 500));
 
    frame->Show(TRUE);
 
    frame->StartConsoleThread();
 
-   csprint("Console started !\n");
-
+   csprint("Bacula wx-console started !\n");
+   
    return TRUE;
 }