]> git.saurik.com Git - wxWidgets.git/commitdiff
Made XPMs transparent
authorJulian Smart <julian@anthemion.co.uk>
Sat, 14 Jun 2003 16:42:40 +0000 (16:42 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 14 Jun 2003 16:42:40 +0000 (16:42 +0000)
Corrected wxMessageBox usage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/configtool/src/bitmaps/redo.xpm
utils/configtool/src/bitmaps/undo.xpm
utils/configtool/src/mainframe.cpp

index 04df64ae5455867d3435fc59eac37a15e41584c6..abff51658fddc94b301c1601866e21716ed32ae8 100644 (file)
@@ -4,7 +4,7 @@ static char *redo_xpm[] = {
 "    16    15        3            1",
 /* colors */
 ". c #000080",
-"# c #c0c0c0",
+"# c None",
 "a c #808080",
 /* pixels */
 "################",
index 157a623e3cddaf705a08f4855b18ba7bf7438cd2..9df93342cf4cb6639a6d6df9a89d2144fc986b70 100644 (file)
@@ -4,7 +4,7 @@ static char *undo_xpm[] = {
 "    16    15        3            1",
 /* colors */
 ". c #000080",
-"# c #c0c0c0",
+"# c None",
 "a c #808080",
 /* pixels */
 "################",
index c965758bf77391c175169def845ffbfe71614861..591e2a0026526abc2d78752960233e7282ee9b14 100644 (file)
@@ -186,7 +186,7 @@ void ctMainFrame::OnAbout(wxCommandEvent& event)
 {
     wxString msg = wxGetApp().GetSettings().GetAppName() + wxT(" (c) Julian Smart");
     wxString caption = wxT("About ") + wxGetApp().GetSettings().GetAppName();
-    wxMessageBox(msg, caption, wxID_OK|wxICON_INFORMATION);
+    wxMessageBox(msg, caption, wxOK|wxICON_INFORMATION);
 }
 
 void ctMainFrame::OnOpen(wxCommandEvent& event)