summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:50 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:50 -0500
commit71498815044724ed94974d9e58c4cd322b6fefc6 (patch)
tree8629dbc7516382201580ea67448e0bd59dc65a92
parent3db25e4be732a597a665ec0e41e94fed851b7124 (diff)
downloadksystemlog-71498815044724ed94974d9e58c4cd322b6fefc6.tar.gz
ksystemlog-71498815044724ed94974d9e58c4cd322b6fefc6.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
-rw-r--r--ksystemlog/src/fileList.cpp4
-rw-r--r--ksystemlog/src/globals.h2
-rw-r--r--ksystemlog/src/ksystemlog.cpp2
-rw-r--r--ksystemlog/src/xorg/xorgReader.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/ksystemlog/src/fileList.cpp b/ksystemlog/src/fileList.cpp
index bdd93e7..9b5a90e 100644
--- a/ksystemlog/src/fileList.cpp
+++ b/ksystemlog/src/fileList.cpp
@@ -65,7 +65,7 @@ FileList::FileList(TQWidget *parent, TQString description) :
TQWhatsThis::add(fileList, i18n("<qt>Here is a list of every files that will be read by KSystemLog to display the current log lines.</qt>"));
- add=new TQPushButton(SmallIcon("fileopen"), i18n("&Add File..."), buttons);
+ add=new TQPushButton(SmallIcon("document-open"), i18n("&Add File..."), buttons);
connect(add, TQT_SIGNAL(clicked()), this, TQT_SLOT(addItem()));
TQToolTip::add(add, i18n("Choose a new file"));
TQWhatsThis::add(add, i18n("Opens a dialog box to choose a new file to be added to the list."));
@@ -93,7 +93,7 @@ FileList::FileList(TQWidget *parent, TQString description) :
fileListMenu=new TDEPopupMenu(this);
fileListMenu->insertTitle(i18n("File List"));
- fileListMenu->insertItem(SmallIcon("fileopen"), i18n("&Add File..."), this, TQT_SLOT(addItem()), 0, ADD_FILE_MENU_ID);
+ fileListMenu->insertItem(SmallIcon("document-open"), i18n("&Add File..."), this, TQT_SLOT(addItem()), 0, ADD_FILE_MENU_ID);
fileListMenu->insertItem(SmallIcon("edit_remove"), i18n("&Remove"), this, TQT_SLOT(removeSelectedItem()), 0, REMOVE_MENU_ID);
fileListMenu->insertSeparator();
fileListMenu->insertItem(SmallIcon("go-up"), i18n("Move &Up"), this, TQT_SLOT(moveUpItem()), 0, MOVE_UP_MENU_ID);
diff --git a/ksystemlog/src/globals.h b/ksystemlog/src/globals.h
index af8afe3..e171d3c 100644
--- a/ksystemlog/src/globals.h
+++ b/ksystemlog/src/globals.h
@@ -113,7 +113,7 @@ enum groupByType {
#define ACPID_MODE_ICON "connect_no"
-#define CUPS_MODE_ICON "fileprint"
+#define CUPS_MODE_ICON "document-print"
#define CUPS_ACCESS_MODE_ICON "history"
#define APACHE_MODE_ICON "network"
diff --git a/ksystemlog/src/ksystemlog.cpp b/ksystemlog/src/ksystemlog.cpp
index 3a84a95..1e5bb94 100644
--- a/ksystemlog/src/ksystemlog.cpp
+++ b/ksystemlog/src/ksystemlog.cpp
@@ -310,7 +310,7 @@ void KSystemLog::setupActions() {
sendMailAction->setWhatsThis(i18n("Sends the selection by mail. Simply select the important lines and click on this menu entry to send the selection to a friend or a mailing list."));
sendMailAction->setEnabled(false);
- logMessageAction=new TDEAction(i18n("&Send Message..."), "filenew", CTRL+Key_L, TQT_TQOBJECT(this), TQT_SLOT(slotLogMessage()), actionCollection(), "log_message" );
+ logMessageAction=new TDEAction(i18n("&Send Message..."), "document-new", CTRL+Key_L, TQT_TQOBJECT(this), TQT_SLOT(slotLogMessage()), actionCollection(), "log_message" );
logMessageAction->setToolTip(i18n("Send a message to the log system"));
logMessageAction->setWhatsThis(i18n("This action will open a dialog which lets you send a message to the log system."));
diff --git a/ksystemlog/src/xorg/xorgReader.cpp b/ksystemlog/src/xorg/xorgReader.cpp
index 0748b9a..cd0f36d 100644
--- a/ksystemlog/src/xorg/xorgReader.cpp
+++ b/ksystemlog/src/xorg/xorgReader.cpp
@@ -30,7 +30,7 @@
#define DEFAULT_SETTING_LOG_LEVEL_ICON "configure_toolbars"
#define COMMAND_LINE_LOG_LEVEL_ICON "konsole"
#define PROBED_LOG_LEVEL_ICON "wizard"
-#define NOT_IMPLEMENTED_LOG_LEVEL_ICON "filenew"
+#define NOT_IMPLEMENTED_LOG_LEVEL_ICON "document-new"
XorgReader::XorgReader(TQObject *parent, const char *name) :
DefaultReader(parent, name),