summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/forms/kexiactionselectiondialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2014-10-13 15:43:48 -0500
committerTimothy Pearson <[email protected]>2014-10-13 15:43:48 -0500
commitd504497c10d3cc9441a39245af1723e8c0ae556d (patch)
tree9fdf6ec3624b0c25e04b5bc37c96ecef0fdaca18 /kexi/plugins/forms/kexiactionselectiondialog.cpp
parentc128ab57b3b5f3a57427a78cef7d5d4236cc9822 (diff)
downloadkoffice-d504497c10d3cc9441a39245af1723e8c0ae556d.tar.gz
koffice-d504497c10d3cc9441a39245af1723e8c0ae556d.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 'kexi/plugins/forms/kexiactionselectiondialog.cpp')
-rw-r--r--kexi/plugins/forms/kexiactionselectiondialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/plugins/forms/kexiactionselectiondialog.cpp b/kexi/plugins/forms/kexiactionselectiondialog.cpp
index dde61c8a..95954cce 100644
--- a/kexi/plugins/forms/kexiactionselectiondialog.cpp
+++ b/kexi/plugins/forms/kexiactionselectiondialog.cpp
@@ -266,7 +266,7 @@ class ActionToExecuteListView : public ActionsListViewBase
const TQPixmap noIcon( KexiUtils::emptyIcon(TDEIcon::Small) );
if (supportedViewModes & Kexi::DataViewMode) {
item = new ActionSelectorDialogListItem("open", this, i18n("Open in Data View"));
- item->setPixmap(0, SmallIcon("fileopen"));
+ item->setPixmap(0, SmallIcon("document-open"));
}
if (part->info()->isExecuteSupported()) {
item = new ActionSelectorDialogListItem("execute", this, i18n("Execute"));
@@ -275,7 +275,7 @@ class ActionToExecuteListView : public ActionsListViewBase
if (part->info()->isPrintingSupported()) {
ActionSelectorDialogListItem *printItem = new ActionSelectorDialogListItem(
"print", this, i18n("Print"));
- printItem->setPixmap(0, SmallIcon("fileprint"));
+ printItem->setPixmap(0, SmallIcon("document-print"));
TDEAction *a = KStdAction::printPreview(0, 0, 0);
item = new ActionSelectorDialogListItem("printPreview", printItem,
a->text().replace("&", "").replace("...", ""));
@@ -301,7 +301,7 @@ class ActionToExecuteListView : public ActionsListViewBase
exportItem->setExpandable(false);
}
item = new ActionSelectorDialogListItem("new", this, i18n("Create New Object"));
- item->setPixmap(0, SmallIcon("filenew"));
+ item->setPixmap(0, SmallIcon("document-new"));
if (supportedViewModes & Kexi::DesignViewMode) {
item = new ActionSelectorDialogListItem("design", this, i18n("Open in Design View"));
item->setPixmap(0, SmallIcon("edit"));
@@ -311,7 +311,7 @@ class ActionToExecuteListView : public ActionsListViewBase
item->setPixmap(0, noIcon);
}
item = new ActionSelectorDialogListItem("close", this, i18n("Close View"));
- item->setPixmap(0, SmallIcon("fileclose"));
+ item->setPixmap(0, SmallIcon("window-close"));
updateWidth();
}