diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:10:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:10:09 -0600 |
commit | e6cf8874a75a09b279e13f59e78b31804b1d6f83 (patch) | |
tree | 73cf4e5dee6ce00c4fa7d32243c322631c50712c /filters/chalk/magick | |
parent | 35dc3d657c5d486b5233ce8e6ec74bf9656aaedf (diff) | |
download | koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.tar.gz koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'filters/chalk/magick')
-rw-r--r-- | filters/chalk/magick/kis_image_magick_converter.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filters/chalk/magick/kis_image_magick_converter.cc b/filters/chalk/magick/kis_image_magick_converter.cc index 880a52c6..225177c4 100644 --- a/filters/chalk/magick/kis_image_magick_converter.cc +++ b/filters/chalk/magick/kis_image_magick_converter.cc @@ -182,7 +182,7 @@ namespace { memcpy(rawdata.data(), profile->datum, profile->length); annotation = new KisAnnotation(TQString(name), "", rawdata); - Q_CHECK_PTR(annotation); + TQ_CHECK_PTR(annotation); image -> addAnnotation(annotation); } @@ -207,7 +207,7 @@ namespace { annotation = new KisAnnotation( TQString("chalk_attribute:%1").arg(TQString(attr -> key)), "", rawdata); - Q_CHECK_PTR(annotation); + TQ_CHECK_PTR(annotation); image -> addAnnotation(annotation); #if MagickLibVersion < 0x620 @@ -412,7 +412,7 @@ KisImageBuilder_Result KisImageMagickConverter::decode(const KURL& uri, bool isB if( ! m_img) { m_img = new KisImage(m_doc->undoAdapter(), image -> columns, image -> rows, cs, "built image"); - Q_CHECK_PTR(m_img); + TQ_CHECK_PTR(m_img); m_img->blockSignals(true); // Don't send out signals while we're building the image // XXX I'm assuming seperate layers won't have other profile things like EXIF |