diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:13 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-23 00:25:13 -0500 |
commit | fc2bd63107ae7a1d17239c9b90e1fd2cdcb5ac76 (patch) | |
tree | bd4676b0c1d85a0c087a830e08cf752ba9329e56 | |
parent | e0af5b18e894a224debb728dced7d5f5445f55bc (diff) | |
download | tdeaccessibility-fc2bd63107ae7a1d17239c9b90e1fd2cdcb5ac76.tar.gz tdeaccessibility-fc2bd63107ae7a1d17239c9b90e1fd2cdcb5ac76.zip |
Fix FTBFS due to accidental double quote duplication
-rw-r--r-- | ksayit/src/docbookclasses.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksayit/src/docbookclasses.cpp b/ksayit/src/docbookclasses.cpp index b509b3d..b163334 100644 --- a/ksayit/src/docbookclasses.cpp +++ b/ksayit/src/docbookclasses.cpp @@ -448,7 +448,7 @@ TQVariant Author::getValue( unsigned int index ) const KeywordSet::KeywordSet(ListViewInterface *parent, ListViewInterface *after, TQString label) : ListViewInterface(parent, after, label) { - TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon(""text-plain", TDEIcon::Small); + TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("text-plain", TDEIcon::Small); this->setPixmap(0, pixmap); this->setText(3, "00000004"); |