diff options
author | Timothy Pearson <[email protected]> | 2012-02-14 21:10:09 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-14 21:10:09 -0600 |
commit | e6cf8874a75a09b279e13f59e78b31804b1d6f83 (patch) | |
tree | 73cf4e5dee6ce00c4fa7d32243c322631c50712c /chalk/colorspaces/wetsticky | |
parent | 35dc3d657c5d486b5233ce8e6ec74bf9656aaedf (diff) | |
download | koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.tar.gz koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'chalk/colorspaces/wetsticky')
-rw-r--r-- | chalk/colorspaces/wetsticky/brushop/kis_wsbrushop.cc | 2 | ||||
-rw-r--r-- | chalk/colorspaces/wetsticky/kis_ws_engine_filter.cc | 2 | ||||
-rw-r--r-- | chalk/colorspaces/wetsticky/wet_sticky_plugin.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chalk/colorspaces/wetsticky/brushop/kis_wsbrushop.cc b/chalk/colorspaces/wetsticky/brushop/kis_wsbrushop.cc index d1616bd6..ed828bf5 100644 --- a/chalk/colorspaces/wetsticky/brushop/kis_wsbrushop.cc +++ b/chalk/colorspaces/wetsticky/brushop/kis_wsbrushop.cc @@ -32,7 +32,7 @@ KisPaintOp * KisWSBrushOpFactory::createOp(const KisPaintOpSettings */*settings*/, KisPainter * painter) { KisPaintOp * op = new KisWSBrushOp(painter); - Q_CHECK_PTR(op); + TQ_CHECK_PTR(op); return op; } diff --git a/chalk/colorspaces/wetsticky/kis_ws_engine_filter.cc b/chalk/colorspaces/wetsticky/kis_ws_engine_filter.cc index 192e8517..89a2f59e 100644 --- a/chalk/colorspaces/wetsticky/kis_ws_engine_filter.cc +++ b/chalk/colorspaces/wetsticky/kis_ws_engine_filter.cc @@ -94,7 +94,7 @@ void single_step(KisColorSpace * cs, KisPaintDeviceSP src, KisPaintDeviceSP dst src -> colorSpace() -> toTQColor(pix, &c, &opacity); TQ_UINT8 *pix = new TQ_UINT8[sizeof( cell )]; - Q_CHECK_PTR(pix); + TQ_CHECK_PTR(pix); cs -> fromTQColor(c, opacity, pix); } diff --git a/chalk/colorspaces/wetsticky/wet_sticky_plugin.cc b/chalk/colorspaces/wetsticky/wet_sticky_plugin.cc index a5c12811..fd477dc7 100644 --- a/chalk/colorspaces/wetsticky/wet_sticky_plugin.cc +++ b/chalk/colorspaces/wetsticky/wet_sticky_plugin.cc @@ -46,7 +46,7 @@ WetStickyPlugin::WetStickyPlugin(TQObject *parent, const char *name, const TQStr if ( parent->inherits("KisFactory") ) { KisColorSpace * colorSpaceWS = new KisWetStickyColorSpace(); - Q_CHECK_PTR(colorSpaceWS); + TQ_CHECK_PTR(colorSpaceWS); KisColorSpaceRegistry::instance() -> add(colorSpaceWS); KisFilterRegistry::instance()->add(new KisWSEngineFilter()); } |