summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-23 00:25:12 -0500
commita529a1594155f07778447ce55c2eef0355ae63f3 (patch)
tree4331fd2a5e0374077a32d0d1151cb3bea0943110
parent415652205b7da2f5e018006ca82c814fea84767d (diff)
downloadknowit-a529a1594155f07778447ce55c2eef0355ae63f3.tar.gz
knowit-a529a1594155f07778447ce55c2eef0355ae63f3.zip
Fix FTBFS due to accidental double quote duplicationr14.0.0
-rw-r--r--src/notes.cpp4
1 files 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;