From a56c76eb59f01d68495212d13e01c334e9c924e5 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 23 Oct 2014 00:25:14 -0500 Subject: [PATCH] Fix FTBFS due to accidental double quote duplication --- kommander/editor/assoctexteditorimpl.cpp | 2 +- kommander/widgets/scriptobject.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kommander/editor/assoctexteditorimpl.cpp b/kommander/editor/assoctexteditorimpl.cpp index 0e085cd7..1c1b7bbe 100644 --- a/kommander/editor/assoctexteditorimpl.cpp +++ b/kommander/editor/assoctexteditorimpl.cpp @@ -73,7 +73,7 @@ AssocTextEditor::AssocTextEditor(TQWidget *a_widget, FormWindow* a_form, associatedTextEdit->setTextFormat(TQt::PlainText);*/ // icon for non-empty scripts - scriptPixmap = TDEGlobal::iconLoader()->loadIcon(""text-x-src", TDEIcon::Small); + scriptPixmap = TDEGlobal::iconLoader()->loadIcon("text-x-src", TDEIcon::Small); // signals and slots connections m_formWindow = a_form; diff --git a/kommander/widgets/scriptobject.cpp b/kommander/widgets/scriptobject.cpp index 3d5cabba..514c4ae5 100644 --- a/kommander/widgets/scriptobject.cpp +++ b/kommander/widgets/scriptobject.cpp @@ -38,7 +38,7 @@ ScriptObject::ScriptObject(TQWidget *a_parent, const char *a_name) setDisplayStates(states); if (KommanderWidget::inEditor) { - setPixmap(TDEGlobal::iconLoader()->loadIcon(""text-x-script", TDEIcon::NoGroup, TDEIcon::SizeMedium)); + setPixmap(TDEGlobal::iconLoader()->loadIcon("text-x-script", TDEIcon::NoGroup, TDEIcon::SizeMedium)); setFrameStyle(TQFrame::Box | TQFrame::Plain); setLineWidth(1); setFixedSize(pixmap()->size());