From 4e603bb5934055706338b7136a4f0bd817727854 Mon Sep 17 00:00:00 2001 From: Nicolas Boichat Date: Fri, 16 Apr 2004 00:09:46 +0000 Subject: [PATCH] Corrected copyright in about dialog. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1212 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/wx-console/wxbmainframe.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bacula/src/wx-console/wxbmainframe.cpp b/bacula/src/wx-console/wxbmainframe.cpp index e763fec41b..f68e376f97 100644 --- a/bacula/src/wx-console/wxbmainframe.cpp +++ b/bacula/src/wx-console/wxbmainframe.cpp @@ -198,7 +198,7 @@ wxbMainFrame::wxbMainFrame(const wxString& title, const wxPoint& pos, const wxSi #if wxUSE_STATUSBAR // create a status bar just for fun (by default with 1 pane only) CreateStatusBar(2); - SetStatusText(_T("Welcome to Bacula wx-GUI!")); + SetStatusText(_T("Welcome to Bacula wx-console!")); #endif // wxUSE_STATUSBAR wxPanel* global = new wxPanel(this, -1); @@ -275,10 +275,9 @@ void wxbMainFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) void wxbMainFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) { wxString msg; - msg.Printf( _T("Welcome to Bacula wx-GUI.\n (c) 2004 Nicolas Boichat \n") - _T("Version : %s"), wxVERSION_STRING); + msg.Printf( _T("Welcome to Bacula wx-console.\nWritten by Nicolas Boichat \n(C) 2004 Kern Sibbald and John Walker\n")); - wxMessageBox(msg, _T("About Bacula-wx-GUI"), wxOK | wxICON_INFORMATION, this); + wxMessageBox(msg, _T("About Bacula wx-console"), wxOK | wxICON_INFORMATION, this); } void wxbMainFrame::OnEnter(wxCommandEvent& WXUNUSED(event)) -- 2.39.5