diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | df8e67b86696f691708af8592d86282b09bab011 (patch) | |
tree | ca90d734c9011d457a42f0a7004a9507b2c2c1bd /plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp | |
parent | 33881ea4441221b1ca0789a72c4c7249d923a0df (diff) | |
download | k3b-df8e67b86696f691708af8592d86282b09bab011.tar.gz k3b-df8e67b86696f691708af8592d86282b09bab011.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp')
-rw-r--r-- | plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp index 844071b..2f93124 100644 --- a/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp +++ b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp @@ -44,9 +44,9 @@ K_EXPORT_COMPONENT_FACTORY( libk3baudioprojectcddbplugin, K3bPluginFactory<K3bAudioProjectCddbPlugin>( "libk3baudioprojectcddbplugin" ) ) -K3bAudioProjectCddbPlugin::K3bAudioProjectCddbPlugin( TQObject* tqparent, +K3bAudioProjectCddbPlugin::K3bAudioProjectCddbPlugin( TQObject* parent, const char* name ) - : K3bProjectPlugin( AUDIO_CD, false, tqparent, name ), + : K3bProjectPlugin( AUDIO_CD, false, parent, name ), m_cddb(0), m_progress(0) { @@ -61,14 +61,14 @@ K3bAudioProjectCddbPlugin::~K3bAudioProjectCddbPlugin() } -void K3bAudioProjectCddbPlugin::activate( K3bDoc* doc, TQWidget* tqparent ) +void K3bAudioProjectCddbPlugin::activate( K3bDoc* doc, TQWidget* parent ) { m_doc = dynamic_cast<K3bAudioDoc*>( doc ); - m_parentWidget = tqparent; + m_parentWidget = parent; m_canceled = false; if( !m_doc || m_doc->numOfTracks() == 0 ) { - KMessageBox::sorry( tqparent, i18n("Please select a non-empty audio project for a cddb query.") ); + KMessageBox::sorry( parent, i18n("Please select a non-empty audio project for a cddb query.") ); } else { if( !m_cddb ) { @@ -77,7 +77,7 @@ void K3bAudioProjectCddbPlugin::activate( K3bDoc* doc, TQWidget* tqparent ) this, TQT_SLOT(slotCddbQueryFinished(int)) ); } if( !m_progress ) { - m_progress = new K3bProgressDialog( i18n("Query Cddb"), tqparent, i18n("Audio Project") ); + m_progress = new K3bProgressDialog( i18n("Query Cddb"), parent, i18n("Audio Project") ); connect( m_progress, TQT_SIGNAL(cancelClicked()), this, TQT_SLOT(slotCancelClicked()) ); } @@ -141,7 +141,7 @@ void K3bAudioProjectCddbPlugin::slotCddbQueryFinished( int error ) } } - // make sure the progress dialog does not get deleted by it's tqparent + // make sure the progress dialog does not get deleted by it's parent delete m_progress; m_doc = 0; m_parentWidget = 0; |