From f97a9818a1fa990dc35ab46bcc0d7e122701b8af Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 9 Oct 2006 09:01:55 +0000 Subject: [PATCH] Ok()->IsOk() replacement. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/combo/combo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/combo/combo.cpp b/samples/combo/combo.cpp index 7d10b80345..3ce2870d17 100644 --- a/samples/combo/combo.cpp +++ b/samples/combo/combo.cpp @@ -817,7 +817,7 @@ MyFrame::MyFrame(const wxString& title) wxImage imgPressed(wxT("dropbutp.png")); wxImage imgHover(wxT("dropbuth.png")); - if ( imgNormal.Ok() && imgPressed.Ok() && imgHover.Ok() ) + if ( imgNormal.IsOk() && imgPressed.IsOk() && imgHover.IsOk() ) { wxBitmap bmpNormal(imgNormal); wxBitmap bmpPressed(imgPressed); -- 2.47.2