diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:14 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:14 -0500 |
commit | a56c76eb59f01d68495212d13e01c334e9c924e5 (patch) | |
tree | ee025094009d8617ee997734cc591f2d6b4d4cc3 | |
parent | ce3c3aadcb050d85aa9a54be8f07858cb2e4429d (diff) | |
download | tdewebdev-a56c76eb59f01d68495212d13e01c334e9c924e5.tar.gz tdewebdev-a56c76eb59f01d68495212d13e01c334e9c924e5.zip |
Fix FTBFS due to accidental double quote duplication
-rw-r--r-- | kommander/editor/assoctexteditorimpl.cpp | 2 | ||||
-rw-r--r-- | 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()); |