summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:12 -0500
commit56bb2168620236e6cc7c2e3501500776b3d50b6b (patch)
tree5cf94fcde178ffd8b3de3363bcbb9539f8661fa5
parent111a3248e767fe370d201af162f337475aae6e9a (diff)
downloadkrusader-56bb2168.tar.gz
krusader-56bb2168.zip
Fix FTBFS due to accidental double quote duplication
-rw-r--r--krusader/Dialogs/checksumdlg.cpp4
-rw-r--r--krusader/Konfigurator/konfigurator.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/krusader/Dialogs/checksumdlg.cpp b/krusader/Dialogs/checksumdlg.cpp
index 33d5c12..7433938 100644
--- a/krusader/Dialogs/checksumdlg.cpp
+++ b/krusader/Dialogs/checksumdlg.cpp
@@ -230,7 +230,7 @@ CreateChecksumDlg::CreateChecksumDlg(const TQStringList& files, bool containFold
// title (icon+text)
TQHBoxLayout *hlayout = new TQHBoxLayout(layout, KDialogBase::spacingHint());
TQLabel *p = new TQLabel(plainPage());
- p->setPixmap(krLoader->loadIcon(""application-octet-stream", TDEIcon::Desktop, 32));
+ p->setPixmap(krLoader->loadIcon("application-octet-stream", TDEIcon::Desktop, 32));
hlayout->addWidget(p);
TQLabel *l1 = new TQLabel(i18n("About to calculate checksum for the following files") +
(containFolders ? i18n(" and folders:") : ":"), plainPage());
@@ -331,7 +331,7 @@ MatchChecksumDlg::MatchChecksumDlg(const TQStringList& files, bool containFolder
// title (icon+text)
TQHBoxLayout *hlayout = new TQHBoxLayout(layout, KDialogBase::spacingHint());
TQLabel *p = new TQLabel(plainPage());
- p->setPixmap(krLoader->loadIcon(""application-octet-stream", TDEIcon::Desktop, 32));
+ p->setPixmap(krLoader->loadIcon("application-octet-stream", TDEIcon::Desktop, 32));
hlayout->addWidget(p);
TQLabel *l1 = new TQLabel(i18n("About to verify checksum for the following files") +
(containFolders ? i18n(" and folders:") : ":"), plainPage());
diff --git a/krusader/Konfigurator/konfigurator.cpp b/krusader/Konfigurator/konfigurator.cpp
index a634604..88f9a97 100644
--- a/krusader/Konfigurator/konfigurator.cpp
+++ b/krusader/Konfigurator/konfigurator.cpp
@@ -105,7 +105,7 @@ void Konfigurator::createLayout( int startPage )
TQPixmap(krLoader->loadIcon("messagebox_warning",TDEIcon::Desktop,32)))));
// archives
newContent(new KgArchives(firstTime, widget->addPage(i18n("Archives"),i18n("Customize the way Krusader deals with archives"),
- TQPixmap(krLoader->loadIcon(""application-x-tarz",TDEIcon::Desktop,32)))));
+ TQPixmap(krLoader->loadIcon("application-x-tarz",TDEIcon::Desktop,32)))));
// dependencies
newContent(new KgDependencies(firstTime, widget->addPage(i18n("Dependencies"),i18n("Set the full path of the external applications"),
TQPixmap(krLoader->loadIcon("kr_dependencies",TDEIcon::Desktop,32)))));