Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 2c717be73b
commit f5a0acaca2

@ -130,8 +130,8 @@ void Katapult::initAccel(TQWidget *parent)
contextMenu()->clear();
new TDEAction(i18n("Execute"), "exec", Key_Return, TQT_TQOBJECT(this), TQT_SLOT(execute()), actions, "execute");
new TDEAction(i18n("Clear"), "editclear", Key_Left, TQT_TQOBJECT(this), TQT_SLOT(clearQuery()), actions, "clear");
new TDEAction(i18n("Close"), "fileclose", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT(hideLauncher()), actions, "close");
new TDEAction(i18n("Clear"), "edit-clear", Key_Left, TQT_TQOBJECT(this), TQT_SLOT(clearQuery()), actions, "clear");
new TDEAction(i18n("Close"), "window-close", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT(hideLauncher()), actions, "close");
new TDEAction(i18n("Complete Query"), "next", Key_Right, TQT_TQOBJECT(this), TQT_SLOT(completeQuery()), actions, "complete_query");
new TDEAction(i18n("Show Context Menu"), "menu", CTRL+Key_C, TQT_TQOBJECT(this), TQT_SLOT(showContextMenu()), actions, "show_menu");

@ -35,7 +35,7 @@
TQPixmap ActionOpenBookmark::icon(int size) const
{
return TDEGlobal::iconLoader()->loadIcon("fileopen", TDEIcon::NoGroup, size);
return TDEGlobal::iconLoader()->loadIcon("document-open", TDEIcon::NoGroup, size);
}
TQString ActionOpenBookmark::text() const

@ -39,7 +39,7 @@ bool ActionOpenDocument::accepts(const KatapultItem* item) const
TQPixmap ActionOpenDocument::icon(int size) const
{
return TDEGlobal::iconLoader()->loadIcon("fileopen", TDEIcon::NoGroup, size);
return TDEGlobal::iconLoader()->loadIcon("document-open", TDEIcon::NoGroup, size);
}
TQString ActionOpenDocument::text() const

Loading…
Cancel
Save