X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..56d74412d9bc8d61c389ddb3919f2a03e610a376:/src/os2/brush.cpp diff --git a/src/os2/brush.cpp b/src/os2/brush.cpp index 6da22a5cbe..45fadb451a 100644 --- a/src/os2/brush.cpp +++ b/src/os2/brush.cpp @@ -6,7 +6,7 @@ // Created: 10/13/99 // RCS-ID: $Id$ // Copyright: (c) David Webster -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // For compilers that support precompilation, includes "wx.h". @@ -102,9 +102,9 @@ wxBrush::wxBrush( bool wxBrush::RealizeResource() { - BOOL bOk; - ERRORID vError; - wxString sError; + bool bOk; + ERRORID vError; + wxString sError; if (M_BRUSHDATA && M_BRUSHDATA->m_hBrush == 0L) { @@ -138,13 +138,13 @@ bool wxBrush::RealizeResource() { vError = ::WinGetLastError(vHabmain); sError = wxPMErrorToStr(vError); - wxLogError("Unable to set current color table to RGB mode. Error: %s\n", sError.c_str()); + wxLogError(_T("Unable to set current color table to RGB mode. Error: %s\n"), sError.c_str()); return FALSE; } if (M_BRUSHDATA->m_nStyle==wxTRANSPARENT) { - return TRUE; + return true; } COLORREF vPmColour = 0L; @@ -209,18 +209,18 @@ bool wxBrush::RealizeResource() M_BRUSHDATA->m_vBundle.usMixMode = FM_OVERPAINT; M_BRUSHDATA->m_vBundle.usBackMixMode = BM_OVERPAINT; - bOk = ::GpiSetAttrs( M_BRUSHDATA->m_hBrush - ,PRIM_AREA - ,ABB_COLOR | ABB_BACK_COLOR | ABB_MIX_MODE | ABB_BACK_MIX_MODE | - ABB_SET | ABB_SYMBOL - ,ABB_REF_POINT - ,&M_BRUSHDATA->m_vBundle - ); + bOk = (bool)::GpiSetAttrs( M_BRUSHDATA->m_hBrush + ,PRIM_AREA + ,ABB_COLOR | ABB_BACK_COLOR | ABB_MIX_MODE | ABB_BACK_MIX_MODE | + ABB_SET | ABB_SYMBOL + ,ABB_REF_POINT + ,&M_BRUSHDATA->m_vBundle + ); if (!bOk) { vError = ::WinGetLastError(vHabmain); sError = wxPMErrorToStr(vError); - wxLogError("Can't set Gpi attributes for an AREABUNDLE. Error: %s\n", sError.c_str()); + wxLogError(_T("Can't set Gpi attributes for an AREABUNDLE. Error: %s\n"), sError.c_str()); } return bOk; } @@ -234,14 +234,12 @@ WXHANDLE wxBrush::GetResourceHandle() return (WXHANDLE)M_BRUSHDATA->m_hBrush; } // end of wxBrush::GetResourceHandle -bool wxBrush::FreeResource( - bool WXUNUSED(bForce) -) +bool wxBrush::FreeResource( bool WXUNUSED(bForce) ) { if (M_BRUSHDATA && (M_BRUSHDATA->m_hBrush != 0)) { M_BRUSHDATA->m_hBrush = 0; - return TRUE; + return true; } else return FALSE; } // end of wxBrush::FreeResource @@ -319,4 +317,3 @@ void wxBrush::SetPS( M_BRUSHDATA->m_hBrush = hPS; RealizeResource(); } // end of WxWinGdi_CPen::SetPS -