author | mickeyl <mickeyl> | 2004-02-24 16:51:34 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-02-24 16:51:34 (UTC) |
commit | 17eafbf019590393ccd01647c5c9d5d880b95e39 (patch) (side-by-side diff) | |
tree | 1c6134113173fea4180188c372b75ef5a5189c9a | |
parent | 115adc4d2d5d52f9fc69602f6af96c58c077e922 (diff) | |
download | opie-17eafbf019590393ccd01647c5c9d5d880b95e39.zip opie-17eafbf019590393ccd01647c5c9d5d880b95e39.tar.gz opie-17eafbf019590393ccd01647c5c9d5d880b95e39.tar.bz2 |
use "..." suffix after name of menu item, when you open a dialog as action
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 7812e4c..b8f009d 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -637,13 +637,13 @@ void Konsole::init(const char* _pgm, QStrList & _args) ec_quick = editCommandListMenu->insertItem( tr( "Quick Edit" ) ); if( listHidden) { secondToolBar->hide(); editCommandListMenu->setItemEnabled(ec_quick ,FALSE); } - ec_edit = editCommandListMenu->insertItem(tr( "Edit" ) ); + ec_edit = editCommandListMenu->insertItem(tr( "Edit..." ) ); cfg.setGroup("Commands"); commonCombo->setInsertionPolicy(QComboBox::AtCurrent); initCommandList(); // for (int i = 0; commonCmds[i] != NULL; i++) { @@ -660,13 +660,13 @@ void Konsole::init(const char* _pgm, QStrList & _args) sm_right = scrollMenu->insertItem(tr( "Right" )); // scrollMenu->insertSeparator(4); // scrollMenu->insertItem(tr( "Horizontal" )); configMenu->insertItem(tr( "ScrollBar" ),scrollMenu); - configMenu->insertItem(tr( "History" ), this, SLOT(historyDialog())); + configMenu->insertItem(tr( "History..." ), this, SLOT(historyDialog())); cm_wrap = configMenu->insertItem(tr( "Wrap" )); cfg.setGroup("ScrollBar"); configMenu->setItemChecked(cm_wrap, cfg.readBoolEntry("HorzScroll",0)); cm_beep = configMenu->insertItem(tr( "Use Beep" )); |