diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:12 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:12 -0500 |
commit | 1a380b43ae1495209cf2f6913d3d1b00ccd13c4a (patch) | |
tree | d8c501c24f34ee27e3f2b3ce528b468be4ca83ca /src/dirdialog.cpp | |
parent | e678b715818c4a2368f4faf54e1f5ba3e71099d3 (diff) | |
download | soundkonverter-1a380b43ae1495209cf2f6913d3d1b00ccd13c4a.tar.gz soundkonverter-1a380b43ae1495209cf2f6913d3d1b00ccd13c4a.zip |
Fix FTBFS due to accidental double quote duplicationr14.0.0
Diffstat (limited to 'src/dirdialog.cpp')
-rwxr-xr-x | src/dirdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dirdialog.cpp b/src/dirdialog.cpp index 82d3772..edb3d32 100755 --- a/src/dirdialog.cpp +++ b/src/dirdialog.cpp @@ -60,13 +60,13 @@ DirDialog::DirDialog( Config* config, Mode mode, TQWidget *parent, const char *n TQVBoxLayout* fileTypesButtonsBox = new TQVBoxLayout(); fileTypesBox->addLayout( fileTypesButtonsBox ); - pSelectAll = new KPushButton( iconLoader->loadIcon(""font-x-generic",TDEIcon::Small), i18n("Select all"), this, "pSelectAll" ); + pSelectAll = new KPushButton( iconLoader->loadIcon("font-x-generic",TDEIcon::Small), i18n("Select all"), this, "pSelectAll" ); fileTypesButtonsBox->addWidget( pSelectAll ); connect( pSelectAll, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectAllClicked()) ); - pSelectNone = new KPushButton( iconLoader->loadIcon(""application-x-zerosize",TDEIcon::Small), i18n("Select none"), this, "pSelectNone" ); + pSelectNone = new KPushButton( iconLoader->loadIcon("application-x-zerosize",TDEIcon::Small), i18n("Select none"), this, "pSelectNone" ); fileTypesButtonsBox->addWidget( pSelectNone ); connect( pSelectNone, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectNoneClicked()) |