From a529a1594155f07778447ce55c2eef0355ae63f3 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 23 Oct 2014 00:25:12 -0500 Subject: [PATCH] Fix FTBFS due to accidental double quote duplication --- src/notes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notes.cpp b/src/notes.cpp index 69ee08d..c47e746 100644 --- a/src/notes.cpp +++ b/src/notes.cpp @@ -85,8 +85,8 @@ bool TNoteLink::isLocalReference() const TNotesCollection::TNotesCollection() { - Pixmaps[0] = TDEGlobal::iconLoader()->loadIcon(""text-vnd.tde.ascii", TDEIcon::Small); - Pixmaps[1] = TDEGlobal::iconLoader()->loadIcon(""text-plain", TDEIcon::Small); + Pixmaps[0] = TDEGlobal::iconLoader()->loadIcon("text-vnd.tde.ascii", TDEIcon::Small); + Pixmaps[1] = TDEGlobal::iconLoader()->loadIcon("text-plain", TDEIcon::Small); Pixmaps[2] = TDEGlobal::iconLoader()->loadIcon("folder", TDEIcon::Small); Pixmaps[3] = TDEGlobal::iconLoader()->loadIcon("folder_txt", TDEIcon::Small); modified = false;