Fix FTBFS due to accidental double quote duplication

feat/lzip-support
Timothy Pearson 10 years ago
parent 111a3248e7
commit 56bb216862

@ -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());

@ -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)))));

Loading…
Cancel
Save