X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..23fd5130c767be6267f752f4734d9bfd178b288d:/src/msw/nativdlg.cpp diff --git a/src/msw/nativdlg.cpp b/src/msw/nativdlg.cpp index 9c3088c8bd..f59657cefd 100644 --- a/src/msw/nativdlg.cpp +++ b/src/msw/nativdlg.cpp @@ -96,7 +96,7 @@ wxWindow* wxWindow::GetWindowChild1(wxWindowID& id) if ( m_windowId == id ) return this; - wxNode *node = GetChildren()->First(); + wxNode *node = GetChildren().First(); while ( node ) { wxWindow* child = (wxWindow*) node->Data(); @@ -174,7 +174,7 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) { // 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") @@ -227,7 +227,7 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) #if defined(__WIN95__) else if (str == "MSCTLS_UPDOWN32") { - win == new wxSpinButton; + win = new wxSpinButton; } #endif else if (str == "MSCTLS_TRACKBAR32") @@ -247,7 +247,7 @@ wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd) 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)