projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
unused variable, more efficient increment operator
[wxWidgets.git]
/
src
/
os2
/
dcclient.cpp
diff --git
a/src/os2/dcclient.cpp
b/src/os2/dcclient.cpp
index abc17ca2bb635539f6731344c79f1105fb71f03c..b811e9a8df439eaf4b8c6ed84840f070eaaa5a6f 100644
(file)
--- a/
src/os2/dcclient.cpp
+++ b/
src/os2/dcclient.cpp
@@
-139,7
+139,7
@@
wxWindowDC::wxWindowDC(
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
- wxLogError(_T("Unable to set current color table. Error: %s\n"), sError.c_str());
+ wxLogError(_T("Unable to set current color table
(3)
. Error: %s\n"), sError.c_str());
}
::GpiCreateLogColorTable( m_hPS
,0L
}
::GpiCreateLogColorTable( m_hPS
,0L
@@
-168,17
+168,10
@@
void wxWindowDC::InitDC()
//
SetBackground(wxBrush(m_pCanvas->GetBackgroundColour(), wxSOLID));
//
SetBackground(wxBrush(m_pCanvas->GetBackgroundColour(), wxSOLID));
- wxColour vColor( wxT("BLACK") );
- m_pen.SetColour(vColor);
-
- vColor.Set( wxT("WHITE") );
- m_brush.SetColour(vColor);
+ m_pen.SetColour(*wxBLACK);
+ m_brush.SetColour(*wxWHITE);
InitializePalette();
InitializePalette();
- wxFont* pFont = new wxFont( 10
- ,wxMODERN
- ,wxNORMAL
- ,wxBOLD
- );
+ wxFont* pFont = new wxFont( 10, wxMODERN, wxNORMAL, wxBOLD );
SetFont(*pFont);
delete pFont;
//
SetFont(*pFont);
delete pFont;
//
@@
-239,7
+232,7
@@
wxClientDC::wxClientDC(
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
- wxLogError(_T("Unable to set current color table. Error: %s\n"), sError.c_str());
+ wxLogError(_T("Unable to set current color table
(4)
. Error: %s\n"), sError.c_str());
}
::GpiCreateLogColorTable( m_hPS
,0L
}
::GpiCreateLogColorTable( m_hPS
,0L