diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:55 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:55 -0500 |
commit | 00d2ec14f24d1f263ca75890edf796b31ccb45d7 (patch) | |
tree | e870722f3f9a3959ef2b2b740ecc7e66aa4d3660 /ksayit | |
parent | e681083aa4d48a0ce5a02761dfc959e838c5654c (diff) | |
download | tdeaccessibility-00d2ec14f24d1f263ca75890edf796b31ccb45d7.tar.gz tdeaccessibility-00d2ec14f24d1f263ca75890edf796b31ccb45d7.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'ksayit')
-rw-r--r-- | ksayit/src/docbookclasses.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ksayit/src/docbookclasses.cpp b/ksayit/src/docbookclasses.cpp index 6b9e8d9..d83256c 100644 --- a/ksayit/src/docbookclasses.cpp +++ b/ksayit/src/docbookclasses.cpp @@ -119,7 +119,7 @@ TQVariant RobDocument::getValue( unsigned int index ) const Overview::Overview(ListViewInterface *parent, ListViewInterface *after, TQString label) : ListViewInterface(parent, after, label) { - TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("filenew", TDEIcon::Small); + TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("document-new", TDEIcon::Small); this->setPixmap(0, pixmap); this->setText(3, "0"); // upmost element @@ -174,7 +174,7 @@ TQVariant Overview::getValue( unsigned int index ) const Date::Date(ListViewInterface *parent, ListViewInterface *after, TQString label) : ListViewInterface(parent, after, label) { - TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("filenew", TDEIcon::Small); + TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("document-new", TDEIcon::Small); this->setPixmap(0, pixmap); this->setText(3, "00000001"); @@ -241,7 +241,7 @@ TQVariant Date::getValue( unsigned int index ) const ReleaseInfo::ReleaseInfo(ListViewInterface *parent, ListViewInterface *after, TQString label) : ListViewInterface(parent, after, label) { - TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("filenew", TDEIcon::Small); + TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("document-new", TDEIcon::Small); this->setPixmap(0, pixmap); this->setText(3, "00000002"); @@ -569,7 +569,7 @@ TQVariant Keyword::getValue( unsigned int index ) const Abstract::Abstract(ListViewInterface *parent, ListViewInterface *after, TQString label) : ListViewInterface(parent, after, label) { - TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("filenew", TDEIcon::Small); + TQPixmap pixmap = TDEGlobal::iconLoader()->loadIcon("document-new", TDEIcon::Small); this->setPixmap(0, pixmap); this->setText(3, "00000005"); |