projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
include iostream header when using std streams
[wxWidgets.git]
/
src
/
os2
/
dcclient.cpp
diff --git
a/src/os2/dcclient.cpp
b/src/os2/dcclient.cpp
index c313cb51d24fd869c880f75218859efa7a35b52f..b811e9a8df439eaf4b8c6ed84840f070eaaa5a6f 100644
(file)
--- a/
src/os2/dcclient.cpp
+++ b/
src/os2/dcclient.cpp
@@
-25,11
+25,10
@@
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/log.h"
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/log.h"
+ #include "wx/app.h"
+ #include "wx/window.h"
#endif
#endif
-#include "wx/window.h"
-#include "wx/app.h"
-
#include "wx/os2/private.h"
// ----------------------------------------------------------------------------
#include "wx/os2/private.h"
// ----------------------------------------------------------------------------
@@
-140,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
@@
-169,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;
//
@@
-240,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