From 1a380b43ae1495209cf2f6913d3d1b00ccd13c4a Mon Sep 17 00:00:00 2001
From: Timothy Pearson <kb9vqf@pearsoncomputing.net>
Date: Thu, 23 Oct 2014 00:25:12 -0500
Subject: Fix FTBFS due to accidental double quote duplication

---
 src/dirdialog.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/dirdialog.cpp')

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())
-- 
cgit v1.2.1