Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent d03529a4e5
commit c1124c6ab4

@ -356,10 +356,10 @@ void CatalogManager::setupActions()
action = new TDEAction( i18n("Check S&yntax"), "syntax", CTRL+Key_Y,
TQT_TQOBJECT(_catalogManager), TQT_SLOT(checkSyntax()), actionCollection(), "syntax");
action->setEnabled(false);
action = new TDEAction( i18n("S&pell Check"), "spellcheck", CTRL+Key_I,
TQT_TQOBJECT(this), TQT_SLOT(spellcheck()), actionCollection(), "spellcheck");
action = new TDEAction( i18n("S&pell Check"), "tools-check-spelling", CTRL+Key_I,
TQT_TQOBJECT(this), TQT_SLOT(spellcheck()), actionCollection(), "tools-check-spelling");
action->setEnabled(false);
action = new TDEAction( i18n("Spell Check in &Marked"), "spellcheck", CTRL+ALT+Key_I,
action = new TDEAction( i18n("Spell Check in &Marked"), "tools-check-spelling", CTRL+ALT+Key_I,
TQT_TQOBJECT(this), TQT_SLOT(markedSpellcheck()), actionCollection(), "spellcheck_marked");
action->setEnabled(false);
action = new TDEAction( i18n("&Rough Translation"), CTRL+Key_T,
@ -382,7 +382,7 @@ void CatalogManager::setupActions()
actionMap["statistics_marked"] = NEEDS_DIR | NEEDS_MARK;
actionMap["syntax"] = NEEDS_PO;
actionMap["spellcheck"] = NEEDS_PO;
actionMap["tools-check-spelling"] = NEEDS_PO;
actionMap["spellcheck_marked"] = NEEDS_PO | NEEDS_MARK;
actionMap["rough_translation_marked"] = NEEDS_MARK;
actionMap["mail_file"] = NEEDS_PO;

@ -80,7 +80,7 @@ ProjectDialog::ProjectDialog(Project::Ptr project)
_spellPage = new SpellPreferences(0);
addPage(_spellPage, i18n("title of page in preferences dialog","Spelling")
, "spellcheck"
, "tools-check-spelling"
, i18n("Options for Spell Checking"));
connect( _spellPage, TQT_SIGNAL( settingsChanged() )
, this, TQT_SLOT(updateButtons()) );

@ -611,7 +611,7 @@ void KBabelMW::setupActions()
a_recentprojects = new TDERecentFilesAction(i18n("Open &Recent"), 0, TQT_TQOBJECT(this), TQT_SLOT(projectOpenRecent(const KURL&)), actionCollection(), "recent_projects");
// the tools menu
action = new TDEAction(i18n("&Spell Check..."), "spellcheck", CTRL+Key_I
action = new TDEAction(i18n("&Spell Check..."), "tools-check-spelling", CTRL+Key_I
, TQT_TQOBJECT(m_view), TQT_SLOT(spellcheckCommon()),actionCollection()
,"spellcheck_common");
action = new TDEAction(i18n("&Check All..."), "spellcheck_all", 0

@ -44,7 +44,7 @@ SpellDlg::SpellDlg(bool haveMarkedText,TQWidget *parent,const char *name)
: KDialogBase(parent,name,true,i18n("Caption of dialog","Spelling")
, Ok|Cancel)
{
setButtonOK(KGuiItem(i18n("&Spell Check"),"spellcheck"));
setButtonOK(KGuiItem(i18n("&Spell Check"),"tools-check-spelling"));
_mainWidget = new SpellDlgWidget(this);
setMainWidget(_mainWidget);

@ -44,7 +44,7 @@ CWBugDetailsContainer::CWBugDetailsContainer( TQWidget *parent , const char * na
m_bugCloseSilentlyBtn->setIconSet( BarIconSet( "edittrash" ) );
m_bugReopenBtn->setIconSet( SmallIconSet( "idea" ) );
m_bugReassignBtn->setIconSet( BarIconSet( "folder-new" ) );
m_bugTitleBtn->setIconSet( SmallIconSet( "text_under" ) );
m_bugTitleBtn->setIconSet( SmallIconSet( "format-text-underline" ) );
m_bugSeverityBtn->setIconSet( SmallIconSet( "edit" ) );
m_bugReplyBtn->setIconSet( SmallIconSet( "mail-reply-all" ) );
m_bugReplyPrivBtn->setIconSet( SmallIconSet( "mail-reply-sender" ) );

@ -189,7 +189,7 @@ void KBBMainWindow::initActions()
TQT_SLOT( reopenBug() ), actionCollection(), "cmd_reopen" );
// new TDEAction( i18n("Re&assign..."), "folder-new", CTRL+TQt::Key_A, TQT_TQOBJECT(m_mainWidget),
// TQT_SLOT( reassignBug() ), actionCollection(), "cmd_reassign" );
// new TDEAction( i18n("Change &Title..."), "text_under", CTRL+TQt::Key_T, TQT_TQOBJECT(m_mainWidget),
// new TDEAction( i18n("Change &Title..."), "format-text-underline", CTRL+TQt::Key_T, TQT_TQOBJECT(m_mainWidget),
// TQT_SLOT( titleBug() ), actionCollection(), "cmd_title" );
// new TDEAction( i18n("Change &Severity..."), "edit", CTRL+TQt::Key_S, TQT_TQOBJECT(m_mainWidget),
// TQT_SLOT( severityBug() ), actionCollection(), "cmd_severity" );

Loading…
Cancel
Save