]> git.sur5r.net Git - bacula/bacula/commitdiff
Minor changes.
authorNicolas Boichat <nicolas@boichat.ch>
Thu, 6 May 2004 20:43:16 +0000 (20:43 +0000)
committerNicolas Boichat <nicolas@boichat.ch>
Thu, 6 May 2004 20:43:16 +0000 (20:43 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1343 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/wx-console/CHANGELOG
bacula/src/wx-console/TODO
bacula/src/wx-console/wxbmainframe.cpp

index b646b2f1b778829fe00eeb6a6837fb5f85b5ce3b..f171005a90580067ee8d40eaa69ee31d0880c4a8 100644 (file)
@@ -1,3 +1,8 @@
+06-05-2004 :
+ - wxbMainFrame : Corrected font bug in GTK+ 1.2
+ - console_thread : Added support for Mac OS X configuration
+      file location.
+
 02-05-2004 :
  - wxbMainFrame : Corrected incorrect casting of thread event
       functions (reported by Aristedes Maniatis)
index db42539f904e721d4e7474062a8e451019b28b5b..1541ad0309172d797d4362456f06bf1e49fba6c1 100644 (file)
@@ -13,6 +13,9 @@ Mac OS X : "You must first get a unique identifier for your application,
   a so called creator, a four letter constant. All you need to know about
   this step is at http://developer.apple.com/dev/cftype/" (wxWiki)
   To modify in Makefile.in wx-console target
+  
+Mac OS X : Ask kern for the status of this distribution (who is
+  the package releaser ?)
 
 [postponed to July:]
 
index e9b8eea833adcb0b7bca7bb38f8f55398397e7ec..d066bc92373519cd5c19b9b574c624b275305746 100644 (file)
@@ -230,7 +230,7 @@ wxbMainFrame::wxbMainFrame(const wxString& title, const wxPoint& pos, const wxSi
 #if defined __WXGTK12__ && !defined __WXGTK20__ // Fix for "chinese" fonts under gtk+ 1.2
    font.SetDefaultEncoding(wxFONTENCODING_ISO8859_1);
    consoleCtrl->SetDefaultStyle(wxTextAttr(*wxBLACK, wxNullColour, font));
-   Print("Warning : Unicode is disabled because you are using wxWidgets for GTK+ 1.2.", CS_DEBUG);
+   Print("Warning : Unicode is disabled because you are using wxWidgets for GTK+ 1.2.\n", CS_DEBUG);
 #else
    consoleCtrl->SetDefaultStyle(wxTextAttr(*wxBLACK, wxNullColour, font));
 #endif