From: Julian Smart Date: Sat, 14 Jun 2003 16:42:40 +0000 (+0000) Subject: Made XPMs transparent X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eac703e9c5f94da6ac5a0dcc43bf78f7203624a0?hp=27db95f05459cad75e705f15750bf4d7d7666713 Made XPMs transparent Corrected wxMessageBox usage git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/configtool/src/bitmaps/redo.xpm b/utils/configtool/src/bitmaps/redo.xpm index 04df64ae54..abff51658f 100644 --- a/utils/configtool/src/bitmaps/redo.xpm +++ b/utils/configtool/src/bitmaps/redo.xpm @@ -4,7 +4,7 @@ static char *redo_xpm[] = { " 16 15 3 1", /* colors */ ". c #000080", -"# c #c0c0c0", +"# c None", "a c #808080", /* pixels */ "################", diff --git a/utils/configtool/src/bitmaps/undo.xpm b/utils/configtool/src/bitmaps/undo.xpm index 157a623e3c..9df93342cf 100644 --- a/utils/configtool/src/bitmaps/undo.xpm +++ b/utils/configtool/src/bitmaps/undo.xpm @@ -4,7 +4,7 @@ static char *undo_xpm[] = { " 16 15 3 1", /* colors */ ". c #000080", -"# c #c0c0c0", +"# c None", "a c #808080", /* pixels */ "################", diff --git a/utils/configtool/src/mainframe.cpp b/utils/configtool/src/mainframe.cpp index c965758bf7..591e2a0026 100644 --- a/utils/configtool/src/mainframe.cpp +++ b/utils/configtool/src/mainframe.cpp @@ -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)