diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 20:10:13 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 20:10:13 -0500 |
commit | f61a9f02a1edaa3c47aa939c9463ebb2600d9be1 (patch) | |
tree | 070cb473194dba2b5e26db846e71a0777309ba33 /quanta/treeviews | |
parent | 3a347442a45a0631beade76b2870e6c823c2304c (diff) | |
download | tdewebdev-f61a9f02a1edaa3c47aa939c9463ebb2600d9be1.tar.gz tdewebdev-f61a9f02a1edaa3c47aa939c9463ebb2600d9be1.zip |
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'quanta/treeviews')
-rw-r--r-- | quanta/treeviews/scripttreeview.cpp | 2 | ||||
-rw-r--r-- | quanta/treeviews/templatestreeview.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/quanta/treeviews/scripttreeview.cpp b/quanta/treeviews/scripttreeview.cpp index 6a4e02a7..5fd761fa 100644 --- a/quanta/treeviews/scripttreeview.cpp +++ b/quanta/treeviews/scripttreeview.cpp @@ -92,7 +92,7 @@ ScriptTreeView::ScriptTreeView(TQWidget *parent, const char *name ) m_fileMenu->insertItem(i18n("Edi&t Description"), this, TQT_SLOT(slotEditDescription())); m_fileMenu->insertSeparator(); m_fileMenu->insertItem(UserIcon("ball"), i18n("&Assign Action"), this, TQT_SLOT(slotAssignAction())); - m_fileMenu->insertItem(SmallIcon("mail_send"), i18n("&Send in Email..."), this, TQT_SLOT(slotSendScriptInMail())); + m_fileMenu->insertItem(SmallIcon("mail-send"), i18n("&Send in Email..."), this, TQT_SLOT(slotSendScriptInMail())); m_fileMenu->insertItem(SmallIcon("network"), i18n("&Upload Script..."), this, TQT_SLOT(slotUploadScript())); m_folderMenu = new TDEPopupMenu(this); diff --git a/quanta/treeviews/templatestreeview.cpp b/quanta/treeviews/templatestreeview.cpp index 700dfcff..b50665bf 100644 --- a/quanta/treeviews/templatestreeview.cpp +++ b/quanta/treeviews/templatestreeview.cpp @@ -145,7 +145,7 @@ TemplatesTreeView::TemplatesTreeView(TDEMainWindow *parent, const char *name ) m_openId = m_fileMenu->insertItem(i18n("Open"), this ,TQT_SLOT(slotInsert())); m_fileMenu->insertItem(SmallIcon("document-open"), i18n("&Open"), this ,TQT_SLOT(slotOpen())); - m_fileMenu->insertItem(SmallIcon("mail_send"), i18n("Send in E&mail..."), this, TQT_SLOT(slotSendInMail())); + m_fileMenu->insertItem(SmallIcon("mail-send"), i18n("Send in E&mail..."), this, TQT_SLOT(slotSendInMail())); m_fileMenu->insertItem(SmallIcon("network"), i18n("&Upload Template..."), this, TQT_SLOT(slotUploadTemplate())); m_insertFileInProject = m_fileMenu->insertItem(i18n("&Insert in Project..."), this, TQT_SLOT(slotInsertInProject())); m_menuClose = m_fileMenu->insertItem(SmallIcon("window-close"), i18n("Clos&e"), this, TQT_SLOT(slotClose())); @@ -158,7 +158,7 @@ TemplatesTreeView::TemplatesTreeView(TDEMainWindow *parent, const char *name ) m_folderMenu = new TDEPopupMenu(this); m_folderMenu->insertItem(SmallIcon("folder-new"), i18n("&New Folder..."), this, TQT_SLOT(slotNewDir())); - m_folderMenu->insertItem(SmallIcon("mail_send"), i18n("Send in E&mail..."), this, TQT_SLOT(slotSendInMail())); + m_folderMenu->insertItem(SmallIcon("mail-send"), i18n("Send in E&mail..."), this, TQT_SLOT(slotSendInMail())); m_folderMenu->insertItem(SmallIcon("network"), i18n("&Upload Template..."), this, TQT_SLOT(slotUploadTemplate())); m_downloadMenuId = m_folderMenu->insertItem(SmallIcon("network"), i18n("&Download Template..."), this, TQT_SIGNAL(downloadTemplate())); m_insertFolderInProject = m_folderMenu->insertItem(i18n("&Insert in Project..."), this, TQT_SLOT(slotInsertDirInProject())); |