summaryrefslogtreecommitdiffstats
path: root/tdegtk/tqtcairopainter.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-05-06 20:18:33 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-05-06 20:18:33 -0500
commitfe40049bb56bc511f63521bcf1cf3889755a11bf (patch)
treea2f88cae839658aab107a012977670af57cdad03 /tdegtk/tqtcairopainter.cpp
parentb83b443d67bd2ab8dc0057e77592f2db0a86b3ca (diff)
downloadgtk3-tqt-engine-fe40049bb56bc511f63521bcf1cf3889755a11bf.tar.gz
gtk3-tqt-engine-fe40049bb56bc511f63521bcf1cf3889755a11bf.zip
Cleanup output clutter.
Diffstat (limited to 'tdegtk/tqtcairopainter.cpp')
-rw-r--r--tdegtk/tqtcairopainter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdegtk/tqtcairopainter.cpp b/tdegtk/tqtcairopainter.cpp
index 8666b8b..dac2c72 100644
--- a/tdegtk/tqtcairopainter.cpp
+++ b/tdegtk/tqtcairopainter.cpp
@@ -145,7 +145,7 @@ TQImage CairoSurfaceToTQImage(cairo_surface_t* surface) {
else {
// FIXME
// Force Cairo to convert the surface to a format that TQImage can read!
- printf("[WARNING] Tried to convert a Cairo surface of format %d to a TQImage (NULL image returned!)\n\r", cairo_format); fflush(stdout);
+ printf("[WARNING] Tried to convert a Cairo surface of format %d to a TQImage (NULL image returned!)\n", cairo_format); fflush(stdout);
return TQImage();
}
@@ -320,7 +320,7 @@ void TQt3CairoPaintDevice::transferIntermediateSurface() {
combinedPixel_b = ~(devicePixel_b | intermediatePixel_b);
}
else {
- tqWarning("TQt3CairoPaintDevice::cmd: Unhandled raster operation [Was attempting to use raster operation %d\n\r", m_rop);
+ tqWarning("TQt3CairoPaintDevice::cmd: Unhandled raster operation [Was attempting to use raster operation %d\n", m_rop);
combinedPixel_a = devicePixel_a;
combinedPixel_r = devicePixel_r;
combinedPixel_g = devicePixel_g;
@@ -1297,7 +1297,7 @@ void TQt3CairoPaintDevice::updateSurfaceDimensions() const {
m_height = cairo_image_surface_get_height(m_surface);
}
if ((m_width < 1) || (m_height < 1)) {
- printf("[WARNING] Cairo surface height or width less than 0; drawing will not be possible!\n\r"); fflush(stdout);
+ printf("[WARNING] Cairo surface height or width less than 0; drawing will not be possible!\n"); fflush(stdout);
}
}