summaryrefslogtreecommitdiffstats
path: root/libk3b/tools/k3bdeviceselectiondialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitdf8e67b86696f691708af8592d86282b09bab011 (patch)
treeca90d734c9011d457a42f0a7004a9507b2c2c1bd /libk3b/tools/k3bdeviceselectiondialog.cpp
parent33881ea4441221b1ca0789a72c4c7249d923a0df (diff)
downloadk3b-df8e67b8.tar.gz
k3b-df8e67b8.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 'libk3b/tools/k3bdeviceselectiondialog.cpp')
-rw-r--r--libk3b/tools/k3bdeviceselectiondialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/libk3b/tools/k3bdeviceselectiondialog.cpp b/libk3b/tools/k3bdeviceselectiondialog.cpp
index c4e03ee..0c6c3f4 100644
--- a/libk3b/tools/k3bdeviceselectiondialog.cpp
+++ b/libk3b/tools/k3bdeviceselectiondialog.cpp
@@ -37,7 +37,7 @@ public:
};
-K3bDeviceSelectionDialog::K3bDeviceSelectionDialog( TQWidget* tqparent,
+K3bDeviceSelectionDialog::K3bDeviceSelectionDialog( TQWidget* parent,
const char* name,
const TQString& text,
bool modal )
@@ -45,7 +45,7 @@ K3bDeviceSelectionDialog::K3bDeviceSelectionDialog( TQWidget* tqparent,
i18n("Device Selection"),
Ok|Cancel,
Ok,
- tqparent,
+ parent,
name,
modal )
{
@@ -94,7 +94,7 @@ void K3bDeviceSelectionDialog::setSelectedDevice( K3bDevice::Device* dev )
}
-K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* tqparent,
+K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* parent,
const TQPtrList<K3bDevice::Device>& devices,
const TQString& text )
{
@@ -103,7 +103,7 @@ K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* tqparent,
if( devices.count() == 1 )
return devices.getFirst();
- K3bDeviceSelectionDialog dlg( tqparent, 0, text );
+ K3bDeviceSelectionDialog dlg( parent, 0, text );
dlg.addDevices( devices );
if( dlg.exec() == Accepted )
@@ -112,18 +112,18 @@ K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* tqparent,
return 0;
}
-K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* tqparent,
+K3bDevice::Device* K3bDeviceSelectionDialog::selectDevice( TQWidget* parent,
const TQString& text )
{
- return selectDevice( tqparent, k3bcore->deviceManager()->allDevices(), text );
+ return selectDevice( parent, k3bcore->deviceManager()->allDevices(), text );
}
-K3bDevice::Device* K3bDeviceSelectionDialog::selectWriter( TQWidget* tqparent, const TQString& text )
+K3bDevice::Device* K3bDeviceSelectionDialog::selectWriter( TQWidget* parent, const TQString& text )
{
- return selectDevice( tqparent, k3bcore->deviceManager()->burningDevices(), text );
+ return selectDevice( parent, k3bcore->deviceManager()->burningDevices(), text );
}