X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0ed460c2e7802793d591c84f3cfdbff159c5549..054d497f280187c599a6826d950090f72dccdc41:/src/msw/nativdlg.cpp diff --git a/src/msw/nativdlg.cpp b/src/msw/nativdlg.cpp index 097db29e59..120ecad6b1 100644 --- a/src/msw/nativdlg.cpp +++ b/src/msw/nativdlg.cpp @@ -169,12 +169,12 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) { win = new wxRadioButton; } -#ifdef __WIN32__ +#if defined(__WIN32__) && defined(BS_BITMAP) else if (style & BS_BITMAP) { // TODO: how to find the bitmap? win = new wxBitmapButton; - wxMessageBox("Have not yet implemented bitmap button as BS_BITMAP button."); + wxLogError("Have not yet implemented bitmap button as BS_BITMAP button."); } #endif else if (style1 == BS_OWNERDRAW) @@ -199,7 +199,7 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) { char buf[256]; sprintf(buf, "Don't know what kind of button this is: id = %d", (int) id); - wxMessageBox(buf); + wxLogError(buf); } } else if (str == "COMBOBOX") @@ -241,13 +241,13 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) if ((style1 == SS_LEFT) || (style1 == SS_RIGHT) || (style1 == SS_SIMPLE)) win = new wxStaticText; -#ifdef __WIN32__ +#if defined(__WIN32__) && defined(BS_BITMAP) else if (style1 == SS_BITMAP) { win = new wxStaticBitmap; // Help! this doesn't correspond with the wxWin implementation. - wxMessageBox("Please make SS_BITMAP statics into owner-draw buttons."); + wxLogError("Please make SS_BITMAP statics into owner-draw buttons."); } #endif } @@ -255,7 +255,7 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) { wxString msg("Don't know how to convert from Windows class "); msg += str; - wxMessageBox(msg); + wxLogError(msg); } if (win)