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 /chalk/plugins/viewplugins/separate_channels | |
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/plugins/viewplugins/separate_channels')
-rw-r--r-- | chalk/plugins/viewplugins/separate_channels/dlg_separate.cc | 2 | ||||
-rw-r--r-- | chalk/plugins/viewplugins/separate_channels/kis_separate_channels_plugin.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chalk/plugins/viewplugins/separate_channels/dlg_separate.cc b/chalk/plugins/viewplugins/separate_channels/dlg_separate.cc index 3da5db51..d1807384 100644 --- a/chalk/plugins/viewplugins/separate_channels/dlg_separate.cc +++ b/chalk/plugins/viewplugins/separate_channels/dlg_separate.cc @@ -41,7 +41,7 @@ DlgSeparate::DlgSeparate( const TQString & imageCS, m_layerCS(layerCS) { m_page = new WdgSeparations(this, "separate_image"); - Q_CHECK_PTR(m_page); + TQ_CHECK_PTR(m_page); setMainWidget(m_page); resize(m_page->sizeHint()); diff --git a/chalk/plugins/viewplugins/separate_channels/kis_separate_channels_plugin.cc b/chalk/plugins/viewplugins/separate_channels/kis_separate_channels_plugin.cc index f56b40a2..6c0aac8f 100644 --- a/chalk/plugins/viewplugins/separate_channels/kis_separate_channels_plugin.cc +++ b/chalk/plugins/viewplugins/separate_channels/kis_separate_channels_plugin.cc @@ -68,7 +68,7 @@ void KisSeparateChannelsPlugin::slotSeparate() DlgSeparate * dlgSeparate = new DlgSeparate(dev->colorSpace()->id().name(), image->colorSpace()->id().name(), m_view, "Separate"); - Q_CHECK_PTR(dlgSeparate); + TQ_CHECK_PTR(dlgSeparate); dlgSeparate->setCaption(i18n("Separate Image")); |