Branch: master

a56c76eb 2014-10-23 00:25:14 Timothy Pearson
Fix FTBFS due to accidental double quote duplication
M kommander/editor/assoctexteditorimpl.cpp
M kommander/widgets/scriptobject.cpp
diff --git a/kommander/editor/assoctexteditorimpl.cpp b/kommander/editor/assoctexteditorimpl.cpp
index 0e085cd..1c1b7bb 100644
--- a/kommander/editor/assoctexteditorimpl.cpp
+++ b/kommander/editor/assoctexteditorimpl.cpp
@@ -73,7 +73,7 @@
   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 3d5cabb..514c4ae 100644
--- a/kommander/widgets/scriptobject.cpp
+++ b/kommander/widgets/scriptobject.cpp
@@ -38,7 +38,7 @@
   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());