summaryrefslogtreecommitdiffstats
path: root/tdegtk/tqtcairopainter.cpp
diff options
context:
space:
mode:
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);
}
}