From 74c05bbf9d92e43a6cf3799355b5f3598884409e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:56:05 -0600 Subject: Remove additional unneeded tq method conversions --- kpdf/ui/propertiesdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kpdf/ui/propertiesdialog.cpp') diff --git a/kpdf/ui/propertiesdialog.cpp b/kpdf/ui/propertiesdialog.cpp index d49f28be..06521692 100644 --- a/kpdf/ui/propertiesdialog.cpp +++ b/kpdf/ui/propertiesdialog.cpp @@ -35,7 +35,7 @@ PropertiesDialog::PropertiesDialog(TQWidget *parent, KPDFDocument *doc) // mime name based on mimetype id TQString mimeName = info->get( "mimeType" ).section( '/', -1 ).upper(); - setCaption( i18n("%1 Properties").tqarg( mimeName ) ); + setCaption( i18n("%1 Properties").arg( mimeName ) ); TQDomElement docElement = info->documentElement(); @@ -50,7 +50,7 @@ PropertiesDialog::PropertiesDialog(TQWidget *parent, KPDFDocument *doc) continue; // create labels and tqlayout them - TQLabel *key = new TQLabel( i18n( "%1:" ).tqarg( titleString ), page ); + TQLabel *key = new TQLabel( i18n( "%1:" ).arg( titleString ), page ); TQLabel *value = new KSqueezedTextLabel( valueString, page ); tqlayout->addWidget( key, row, 0, AlignRight ); tqlayout->addWidget( value, row, 1 ); -- cgit v1.2.1