m_hDC = wxGetPrinterDC(printData);
}
- m_ok = m_hDC ? TRUE: FALSE;
+ m_ok = m_hDC ? true: false;
// as we created it, we must delete it as well
- m_bOwnsDC = TRUE;
+ m_bOwnsDC = true;
}
Init();
{
m_printData = printData;
- m_isInteractive = FALSE;
+ m_isInteractive = false;
m_hDC = wxGetPrinterDC(printData);
m_ok = m_hDC != 0;
- m_bOwnsDC = TRUE;
+ m_bOwnsDC = true;
Init();
}
wxPrinterDC::wxPrinterDC(WXHDC dc)
{
- m_isInteractive = FALSE;
+ m_isInteractive = false;
m_hDC = dc;
- m_bOwnsDC = TRUE;
- m_ok = TRUE;
+ m_bOwnsDC = true;
+ m_ok = true;
}
void wxPrinterDC::Init()
#endif
if (!m_hDC)
- return FALSE;
+ return false;
int ret = ::StartDoc(GetHdc(), &docinfo);
if (pd.hDevNames)
GlobalFree(pd.hDevNames);
- return FALSE;
+ return false;
}
if (pd.hDevNames)
wxDIB dib(bmp);
bool ok = dib.IsOk();
if ( !ok )
- return FALSE;
+ return false;
DIBSECTION ds;
if ( !::GetObject(dib.GetHandle(), sizeof(ds), &ds) )
{
wxLogLastError(_T("GetObject(DIBSECTION)"));
- return FALSE;
+ return false;
}
// ok, we've got all data we need, do blit it
{
wxLogLastError(wxT("StretchDIBits"));
- return FALSE;
+ return false;
}
- return TRUE;
+ return true;
#else
- return FALSE;
+ return false;
#endif
}
}
}
- return TRUE;
+ return true;
}
#endif