summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/printsupport/kernel')
-rw-r--r--src/printsupport/kernel/qprintengine_win.cpp10
-rw-r--r--src/printsupport/kernel/qprinter.cpp2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/printsupport/kernel/qprintengine_win.cpp b/src/printsupport/kernel/qprintengine_win.cpp
index 387dfca9c6..edf4dcb164 100644
--- a/src/printsupport/kernel/qprintengine_win.cpp
+++ b/src/printsupport/kernel/qprintengine_win.cpp
@@ -169,7 +169,7 @@ bool QWin32PrintEngine::begin(QPaintDevice *pdev)
cleanUp();
#ifdef QT_DEBUG_METRICS
- qDebug() << "QWin32PrintEngine::begin()";
+ qDebug("QWin32PrintEngine::begin()");
d->debugMetrics();
#endif // QT_DEBUG_METRICS
@@ -236,7 +236,7 @@ bool QWin32PrintEngine::newPage()
SetBkMode(d->hdc, TRANSPARENT);
#ifdef QT_DEBUG_METRICS
- qDebug() << "QWin32PrintEngine::newPage()";
+ qDebug("QWin32PrintEngine::newPage()");
d->debugMetrics();
#endif // QT_DEBUG_METRICS
@@ -930,7 +930,7 @@ void QWin32PrintEnginePrivate::initialize()
initHDC();
#if defined QT_DEBUG_DRAW || defined QT_DEBUG_METRICS
- qDebug() << "QWin32PrintEngine::initialize()";
+ qDebug("QWin32PrintEngine::initialize()");
debugMetrics();
#endif // QT_DEBUG_DRAW || QT_DEBUG_METRICS
}
@@ -1007,7 +1007,7 @@ void QWin32PrintEnginePrivate::doReinit()
bool QWin32PrintEnginePrivate::resetDC()
{
if (!hdc) {
- qWarning() << "ResetDC() called with null hdc.";
+ qWarning("ResetDC() called with null hdc.");
return false;
}
const HDC oldHdc = hdc;
@@ -1593,7 +1593,7 @@ void QWin32PrintEngine::setGlobalDevMode(HGLOBAL globalDevNames, HGLOBAL globalD
d->initHDC();
#if defined QT_DEBUG_DRAW || defined QT_DEBUG_METRICS
- qDebug() << "QWin32PrintEngine::setGlobalDevMode()";
+ qDebug("QWin32PrintEngine::setGlobalDevMode()");
debugMetrics();
#endif // QT_DEBUG_DRAW || QT_DEBUG_METRICS
}
diff --git a/src/printsupport/kernel/qprinter.cpp b/src/printsupport/kernel/qprinter.cpp
index cbab151ea0..584be11199 100644
--- a/src/printsupport/kernel/qprinter.cpp
+++ b/src/printsupport/kernel/qprinter.cpp
@@ -2135,7 +2135,7 @@ int QPrinter::toPage() const
void QPrinter::setFromTo(int from, int to)
{
if (from > to) {
- qWarning() << "QPrinter::setFromTo: 'from' must be less than or equal to 'to'";
+ qWarning("QPrinter::setFromTo: 'from' must be less than or equal to 'to'");
from = to;
}
d->fromPage = from;