]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dialogs/dialogs.cpp
Don't try to translate empty strings (just a cosmetical issue - it should
[wxWidgets.git] / samples / dialogs / dialogs.cpp
index f961b7ca0944a7c55aa11badfae856bed9fc5be1..1550e8cf6a8f8b43f05797d5c9aa0b708f779a41 100644 (file)
@@ -231,14 +231,14 @@ void MyFrame::ChooseFontGeneric(wxCommandEvent& WXUNUSED(event) )
 void MyFrame::LogDialog(wxCommandEvent& event)
 {
     wxLogMessage("This is some message - everything is ok so far.");
-    wxLogMessage("Another message...");
+    wxLogMessage("Another message...\n... this one is on multiple lines");
     wxLogWarning("And then something went wrong!");
     wxLogError("Intermediary error handler decided to abort.");
-    wxLogError("The top level caller detected an error.");
+    wxLogError("The top level caller detected an unrecoverable error.");
 
     wxLog::FlushActive();
 
-    wxLogMessage("And this is the same dialog but with onle one message");
+    wxLogMessage("And this is the same dialog but with only one message.");
 }
 
 void MyFrame::MessageBox(wxCommandEvent& WXUNUSED(event) )