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 | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /kmobile/kmobile.cpp | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmobile/kmobile.cpp')
-rw-r--r-- | kmobile/kmobile.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmobile/kmobile.cpp b/kmobile/kmobile.cpp index db2e1cd11..8bd1da8a9 100644 --- a/kmobile/kmobile.cpp +++ b/kmobile/kmobile.cpp @@ -315,32 +315,32 @@ void KMobile::addDevice() * show dialog to user, in which he may choose and select one of the already * configured mobile tqdevices. */ -KMobileDevice * KMobileFactory::chooseDeviceDialog( TQWidget *tqparent, +KMobileDevice * KMobileFactory::chooseDeviceDialog( TQWidget *parent, enum KMobileDevice::ClassType /*type*/, enum KMobileDevice::Capabilities /*caps*/ ) { int num; - m_tqparent = tqparent; + m_parent = parent; // do we already have some tqdevices configured ? num = readDevicesList(); if (!num) { int answ; - answ = KMessageBox::questionYesNo(tqparent, + answ = KMessageBox::questionYesNo(parent, i18n( "<qt>You have no mobile tqdevices configured yet.<p>" "Do you want to add a tqdevice now ?</qt>" ), i18n( "KDE Mobile Device Access" ), KStdGuiItem::add(), i18n("Do Not Add") ); if (answ != KMessageBox::Yes) return 0L; // add a new tqdevice - addDeviceDialog(tqparent); + addDeviceDialog(parent); } num = readDevicesList(); if (!num) return 0L; // let the user select one of the configured tqdevices - KMobile_selectiondialog *dialog = new KMobile_selectiondialog(tqparent); + KMobile_selectiondialog *dialog = new KMobile_selectiondialog(parent); if (!dialog) return 0L; |