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 3db25e4be7
commit 7149881504

@ -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);

@ -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"

@ -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."));

@ -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),

Loading…
Cancel
Save