diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
commit | 5183781c5dddd8447b308c24b2d7f9257bd0bcad (patch) | |
tree | f1fa64e82ce281c97cf602ba207460a5d38dcfdd /src/option | |
parent | 09c863183250d07f82c0919e0a40fc7834c32192 (diff) | |
download | k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.tar.gz k3b-5183781c5dddd8447b308c24b2d7f9257bd0bcad.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/option')
-rw-r--r-- | src/option/base_k3bthemeoptiontab.ui | 2 | ||||
-rw-r--r-- | src/option/k3bburningoptiontab.cpp | 2 | ||||
-rw-r--r-- | src/option/k3bdevicewidget.cpp | 4 | ||||
-rw-r--r-- | src/option/k3bmiscoptiontab.cpp | 6 | ||||
-rw-r--r-- | src/option/k3bthemeoptiontab.cpp | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/src/option/base_k3bthemeoptiontab.ui b/src/option/base_k3bthemeoptiontab.ui index 3b9f458..77eb41b 100644 --- a/src/option/base_k3bthemeoptiontab.ui +++ b/src/option/base_k3bthemeoptiontab.ui @@ -135,7 +135,7 @@ <property name="text"> <string>no Theme selected</string> </property> - <property name="tqalignment"> + <property name="alignment"> <set>AlignCenter</set> </property> </widget> diff --git a/src/option/k3bburningoptiontab.cpp b/src/option/k3bburningoptiontab.cpp index 69a16cf..7792f2a 100644 --- a/src/option/k3bburningoptiontab.cpp +++ b/src/option/k3bburningoptiontab.cpp @@ -132,7 +132,7 @@ void K3bBurningOptionTab::setupGui() "avoid gaps in the data stream due to high system load. The default " "sizes used are %1 MB for CD and %2 MB for DVD burning." "<p>If this option is checked the value specified will be used for both " - "CD and DVD burning.").tqarg(4).tqarg(32) ); + "CD and DVD burning.").arg(4).arg(32) ); TQWhatsThis::add( m_checkEject, i18n("<p>If this option is checked K3b will not eject the medium once the burn process " "finishes. This can be helpful in case one leaves the computer after starting the " diff --git a/src/option/k3bdevicewidget.cpp b/src/option/k3bdevicewidget.cpp index d19e42a..63c2bd0 100644 --- a/src/option/k3bdevicewidget.cpp +++ b/src/option/k3bdevicewidget.cpp @@ -254,7 +254,7 @@ void K3bDeviceWidget::updateDeviceListViews() // create the read-only info items K3bListViewItem* systemDeviceItem = new K3bListViewItem( devRoot, i18n("System device name:") ); if( dev->device->interfaceType() == K3bDevice::SCSI ) - systemDeviceItem->setText( 1, TQString("%1 (%2)").tqarg(dev->device->devicename()).tqarg(dev->device->busTargetLun()) ); + systemDeviceItem->setText( 1, TQString("%1 (%2)").arg(dev->device->devicename()).arg(dev->device->busTargetLun()) ); else systemDeviceItem->setText( 1, dev->device->devicename() ); systemDeviceItem->setForegroundColor( 1, tqpalette().disabled().foreground() ); @@ -383,7 +383,7 @@ void K3bDeviceWidget::slotNewDevice() updateDeviceListViews(); } else - KMessageBox::error( this, i18n("Could not find an additional device at\n%1").tqarg(newDevicename), i18n("Error"), false ); + KMessageBox::error( this, i18n("Could not find an additional device at\n%1").arg(newDevicename), i18n("Error"), false ); } } diff --git a/src/option/k3bmiscoptiontab.cpp b/src/option/k3bmiscoptiontab.cpp index cf740eb..04e660d 100644 --- a/src/option/k3bmiscoptiontab.cpp +++ b/src/option/k3bmiscoptiontab.cpp @@ -124,10 +124,10 @@ bool K3bMiscOptionTab::saveSettings() } if( !fi.exists() ) { - if( KMessageBox::questionYesNo( this, i18n("Directory (%1) does not exist. Create?").tqarg(tempDir), + if( KMessageBox::questionYesNo( this, i18n("Directory (%1) does not exist. Create?").arg(tempDir), i18n("Create Directory"), i18n("Create"), KStdGuiItem::cancel() ) == KMessageBox::Yes ) { if( !KStandardDirs::makeDir( fi.absFilePath() ) ) { - KMessageBox::error( this, i18n("Unable to create directory %1").tqarg(tempDir) ); + KMessageBox::error( this, i18n("Unable to create directory %1").arg(tempDir) ); return false; } } @@ -147,7 +147,7 @@ bool K3bMiscOptionTab::saveSettings() // check for writing permission if( !fi.isWritable() ) { - KMessageBox::error( this, i18n("You do not have permission to write to %1.").tqarg(fi.absFilePath()) ); + KMessageBox::error( this, i18n("You do not have permission to write to %1.").arg(fi.absFilePath()) ); return false; } diff --git a/src/option/k3bthemeoptiontab.cpp b/src/option/k3bthemeoptiontab.cpp index 0e037fc..ec4ca6c 100644 --- a/src/option/k3bthemeoptiontab.cpp +++ b/src/option/k3bthemeoptiontab.cpp @@ -147,7 +147,7 @@ void K3bThemeOptionTab::slotInstallTheme() else sorryText = i18n("Unable to download the icon theme archive.\n" "Please check that address %1 is correct."); - KMessageBox::sorry( this, sorryText.tqarg(themeURL.prettyURL()) ); + KMessageBox::sorry( this, sorryText.arg(themeURL.prettyURL()) ); return; } |