diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:12 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:12 -0500 |
commit | a529a1594155f07778447ce55c2eef0355ae63f3 (patch) | |
tree | 4331fd2a5e0374077a32d0d1151cb3bea0943110 | |
parent | 415652205b7da2f5e018006ca82c814fea84767d (diff) | |
download | knowit-a529a1594155f07778447ce55c2eef0355ae63f3.tar.gz knowit-a529a1594155f07778447ce55c2eef0355ae63f3.zip |
Fix FTBFS due to accidental double quote duplicationr14.0.0
-rw-r--r-- | src/notes.cpp | 4 |
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; |