diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:48 -0600 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-23 15:43:45 +0200 |
| commit | feae001a0240fdca57cc68779f59f88e6af49335 (patch) | |
| tree | e8c1ef6b2ca3f23c77647b98373ed1750eac267b /src/projects/k3bdvdburndialog.cpp | |
| parent | be2dabe8503655c1f6b8049955c499e4f47a51d7 (diff) | |
| download | k3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip | |
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'src/projects/k3bdvdburndialog.cpp')
| -rw-r--r-- | src/projects/k3bdvdburndialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projects/k3bdvdburndialog.cpp b/src/projects/k3bdvdburndialog.cpp index 17ee516..7f04ed4 100644 --- a/src/projects/k3bdvdburndialog.cpp +++ b/src/projects/k3bdvdburndialog.cpp @@ -50,7 +50,7 @@ K3bDvdBurnDialog::K3bDvdBurnDialog( K3bDvdDoc* doc, TQWidget *parent, const char { prepareGui(); - setTitle( i18n("DVD Project"), i18n("Size: %1").tqarg( KIO::convertSize(doc->size()) ) ); + setTitle( i18n("DVD Project"), i18n("Size: %1").arg( KIO::convertSize(doc->size()) ) ); // for now we just put the verify checkbox on the main page... m_checkVerify = K3bStdGuiItems::verifyCheckBox( m_optionGroup ); @@ -283,7 +283,7 @@ void K3bDvdBurnDialog::slotStartClicked() if( TQFile::exists( m_tempDirSelectionWidget->tempPath() ) ) { if( KMessageBox::warningContinueCancel( this, - i18n("Do you want to overwrite %1?").tqarg(m_tempDirSelectionWidget->tempPath()), + i18n("Do you want to overwrite %1?").arg(m_tempDirSelectionWidget->tempPath()), i18n("File Exists"), i18n("Overwrite") ) == KMessageBox::Continue ) { // delete the file here to avoid problems with free space in K3bProjectBurnDialog::slotStartClicked |
