Removed ellipsis from "About..." occurrences.

MS and Apple guidelines mention ellipses should generally be used when a command needs additional information from the user before the operation can execute. This is not the case for showing an about dialog so the ellipses have been removed.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth
2012-01-20 16:51:09 +00:00
parent ecc8721a0a
commit 2d143b6689
114 changed files with 225 additions and 225 deletions

View File

@@ -337,7 +337,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(AccessTest_About, wxT("&About..."), wxT("Show about dialog"));
helpMenu->Append(AccessTest_About, wxT("&About"), wxT("Show about dialog"));
menuFile->Append(AccessTest_Query, wxT("Query"), wxT("Query the window hierarchy"));
menuFile->AppendSeparator();

View File

@@ -157,7 +157,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(wxID_ABOUT, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("Show about dialog"));
menuFile->AppendCheckItem(ID_PlugProvider, wxT("&Plug-in art provider"), wxT("Enable custom art provider"));
menuFile->AppendSeparator();

View File

@@ -386,7 +386,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
wxMenuBar *menuBar = new wxMenuBar;
wxMenu *menuFile = new wxMenu;
menuFile->Append(Calendar_File_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(Calendar_File_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(Calendar_File_ClearLog, wxT("&Clear log\tCtrl-L"));
menuFile->AppendSeparator();

View File

@@ -216,7 +216,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
menuFile->Append(Caret_SetFontSize, wxT("&Font size...\tCtrl-S"));
menuFile->Append(Caret_Move, wxT("&Move caret\tCtrl-C"));
menuFile->AppendSeparator();
menuFile->Append(Caret_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(Caret_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(Caret_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -115,7 +115,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(ID_About, "&About...\tF1", "Show about dialog");
helpMenu->Append(ID_About, "&About\tF1", "Show about dialog");
fileMenu->Append(ID_Quit, "E&xit\tAlt-X", "Quit this program");

View File

@@ -624,7 +624,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(ComboCtrl_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(ComboCtrl_About, wxT("&About\tF1"), wxT("Show about dialog"));
fileMenu->Append(ComboCtrl_Compare, wxT("&Compare against wxComboBox..."),
wxT("Show some wxOwnerDrawnComboBoxes side-by-side with native wxComboBoxes."));

View File

@@ -251,7 +251,7 @@ MyFrame::MyFrame()
wxT("You need to configure a web server accepting debug report uploads to use this function"));
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(DebugRpt_About, wxT("&About...\tF1"));
menuHelp->Append(DebugRpt_About, wxT("&About\tF1"));
wxMenuBar *mbar = new wxMenuBar();
mbar->Append(menuFile, wxT("&File"));

View File

@@ -670,7 +670,7 @@ MyFrame::MyFrame(const wxString& title)
// satisfy this condition and need to define and connect a separate id.
static const int DIALOGS_SYSTEM_ABOUT = 0x4010;
menu->Append(DIALOGS_SYSTEM_ABOUT, "&About...");
menu->Append(DIALOGS_SYSTEM_ABOUT, "&About");
Connect(DIALOGS_SYSTEM_ABOUT, wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(MyFrame::ShowSimpleAboutDialog));
}

View File

@@ -234,7 +234,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
menuFile->Append(NetTest_EnumISP, wxT("&Enumerate ISPs...\tCtrl-E"));
menuFile->Append(NetTest_Check, wxT("&Check connection status...\tCtrl-C"));
menuFile->AppendSeparator();
menuFile->Append(NetTest_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(NetTest_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(NetTest_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -213,7 +213,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Display_About, _("&About...\tF1"), _("Show about dialog"));
helpMenu->Append(Display_About, _("&About\tF1"), _("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -318,7 +318,7 @@ MyFrame::MyFrame()
wxPoint(20,20), wxSize(470,360) )
{
wxMenu *file_menu = new wxMenu();
file_menu->Append( wxID_ABOUT, wxT("&About..."));
file_menu->Append( wxID_ABOUT, wxT("&About"));
file_menu->AppendCheckItem( TEST_USE_SCREEN, wxT("&Use whole screen for dragging"), wxT("Use whole screen"));
file_menu->Append( wxID_EXIT, wxT("E&xit"));

View File

@@ -1772,7 +1772,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
#endif
menuFile->Append(File_Save, wxT("&Save...\tCtrl-S"), wxT("Save drawing to file"));
menuFile->AppendSeparator();
menuFile->Append(File_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(File_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(File_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -249,7 +249,7 @@ MyFrame::MyFrame()
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Erase_Menu_About, "&About...\tCtrl-A", "Show about dialog");
helpMenu->Append(Erase_Menu_About, "&About\tCtrl-A", "Show about dialog");
wxMenuBar *menuBar = new wxMenuBar();
menuBar->Append(menuFile, "&File");

View File

@@ -365,7 +365,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
// create a menu bar
wxMenu *menuFile = new wxMenu;
menuFile->Append(Event_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(Event_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(Event_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -367,7 +367,7 @@ MyFrame::MyFrame()
menuFile->Append(Except_Quit, wxT("E&xit\tCtrl-Q"), wxT("Quit this program"));
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Except_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Except_About, wxT("&About\tF1"), wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -496,7 +496,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
#endif
wxMenu *helpMenu = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
helpMenu->Append(Exec_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Exec_About, wxT("&About\tF1"), wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -311,7 +311,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
menuFile->Append(Font_ViewMsg, wxT("&View...\tCtrl-V"),
wxT("View an email message file"));
menuFile->AppendSeparator();
menuFile->Append(Font_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
menuFile->Append(Font_About, wxT("&About\tCtrl-A"), wxT("Show about dialog"));
menuFile->AppendSeparator();
menuFile->Append(Font_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -168,7 +168,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(wxID_ABOUT, "&About...\tF1", "Show about dialog");
menuHelp->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -281,7 +281,7 @@ MyFrame::MyFrame()
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(HtmlLbox_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(HtmlLbox_About, wxT("&About\tF1"), wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -668,7 +668,7 @@ MyFrame::MyFrame()
menuImage->Append( ID_SHOWTHUMBNAIL, wxT("Test &thumbnail...\tCtrl-T"),
"Test scaling the image during load (try with JPEG)");
menuImage->AppendSeparator();
menuImage->Append( ID_ABOUT, wxT("&About...\tF1"));
menuImage->Append( ID_ABOUT, wxT("&About\tF1"));
menuImage->AppendSeparator();
menuImage->Append( ID_QUIT, wxT("E&xit\tCtrl-Q"));
menu_bar->Append(menuImage, wxT("&Image"));

Binary file not shown.

View File

@@ -17,8 +17,8 @@ msgstr ""
"POT-Creation-Date: \n"
#: ../internat.cpp:200
msgid "&About..."
msgstr "&عن البرنامج..."
msgid "&About"
msgstr "&عن البرنامج"
#: ../internat.cpp:202
msgid "E&xit"

Binary file not shown.

View File

@@ -17,7 +17,7 @@ msgid "International wxWindows App"
msgstr "Интернационализирано приложение на wxWindows"
#: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:136
msgid "&About..."
msgid "&About"
msgstr "&За програмата"
#: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:138

Binary file not shown.

View File

@@ -18,8 +18,8 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: internat.cpp:198
msgid "&About..."
msgstr "&O programu..."
msgid "&About"
msgstr "&O programu"
#: internat.cpp:200
msgid "E&xit"

Binary file not shown.

View File

@@ -19,8 +19,8 @@ msgid "International wxWindows App"
msgstr "Internationales wxWindows Programm"
#: ../internat.cpp:128
msgid "&About..."
msgstr "Ü&ber..."
msgid "&About"
msgstr "Ü&ber"
#: ../internat.cpp:130
msgid "E&xit"

Binary file not shown.

View File

@@ -19,8 +19,8 @@ msgid "International wxWindows App"
msgstr "Application wxWindows internationale"
#: internat.cpp:105
msgid "&About..."
msgstr "&A propos..."
msgid "&About"
msgstr "&A propos"
#: internat.cpp:107
msgid "E&xit"

View File

@@ -295,7 +295,7 @@ MyFrame::MyFrame(wxLocale& locale)
// since wxID_ABOUT and wxID_EXIT are stock IDs they will automatically get
// translated help strings; nice isn't it?
file_menu->Append(wxID_ABOUT, _("&About..."));
file_menu->Append(wxID_ABOUT, _("&About"));
file_menu->AppendSeparator();
file_menu->Append(wxID_EXIT, _("E&xit"));

Binary file not shown.

View File

@@ -47,8 +47,8 @@ msgid "&Test locale availability...\tCtrl-T"
msgstr "&Verifica la disponibilità del locale...\tCtrl-T"
#: ../internat.cpp:261 ../internat.cpp:292
msgid "&About..."
msgstr "&Informazioni su..."
msgid "&About"
msgstr "&Informazioni su"
#: ../internat.cpp:263 ../internat.cpp:294
msgid "E&xit"

Binary file not shown.

View File

@@ -15,8 +15,8 @@ msgstr ""
"X-Poedit-SourceCharset: iso-8859-1\n"
#: ../internat.cpp:214
msgid "&About..."
msgstr "このアプリケーションについて(&A)"
msgid "&About"
msgstr "このアプリケーションについて(&A)"
#: ../internat.cpp:216
msgid "E&xit"

View File

@@ -9,7 +9,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#: ..\internat.cpp:180
msgid "&About..."
msgid "&About"
msgstr "wxウィンドウズについて"
#: ..\internat.cpp:182

Binary file not shown.

View File

@@ -18,8 +18,8 @@ msgid "International wxWindows App"
msgstr "საერთაშორისო wxWindows პროგბრამა"
#: ../internat.cpp:128
msgid "&About..."
msgstr "შეს&ახებ..."
msgid "&About"
msgstr "შეს&ახებ"
#: ../internat.cpp:130
msgid "E&xit"

Binary file not shown.

View File

@@ -16,8 +16,8 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>1 && n<5 ? 1 : 2;\n"
#: ../internat.cpp:200
msgid "&About..."
msgstr "Inform&acje..."
msgid "&About"
msgstr "Inform&acje"
#: ../internat.cpp:202
msgid "E&xit"

Binary file not shown.

View File

@@ -19,8 +19,8 @@ msgid "International wxWindows App"
msgstr "Интернациональное приложение wxWindows"
#: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:136
msgid "&About..."
msgstr "&О программе..."
msgid "&About"
msgstr "&О программе"
#: /home/harms.user1/rolinsky/wxGTK-2.2.0/samples/internat/internat.cpp:138
msgid "E&xit"

Binary file not shown.

View File

@@ -15,8 +15,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: ../internat.cpp:210
msgid "&About..."
msgstr "&Om..."
msgid "&About"
msgstr "&Om"
#: ../internat.cpp:212
msgid "E&xit"

View File

@@ -143,7 +143,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(wxID_ABOUT, "&About...\tF1", "Show about dialog");
menuHelp->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -535,7 +535,7 @@ wxMediaPlayerFrame::wxMediaPlayerFrame(const wxString& title)
wxT("Select a backend manually"));
helpMenu->Append(wxID_ABOUT,
wxT("&About...\tF1"),
wxT("&About\tF1"),
wxT("Show about dialog"));

View File

@@ -154,7 +154,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Minimal_About, "&About...\tF1", "Show about dialog");
helpMenu->Append(Minimal_About, "&About\tF1", "Show about dialog");
fileMenu->Append(Minimal_Quit, "E&xit\tAlt-X", "Quit this program");

View File

@@ -156,7 +156,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
wxMenu *menuFile = new wxMenu;
menuFile->Append(OleAuto_Test, wxT("&Test Excel Automation..."));
menuFile->Append(OleAuto_About, wxT("&About..."));
menuFile->Append(OleAuto_About, wxT("&About"));
menuFile->AppendSeparator();
menuFile->Append(OleAuto_Quit, wxT("E&xit"));

View File

@@ -87,7 +87,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos,
fileMenu->Append(wxID_EXIT, wxT("E&xit\tALT-X"));
// Make the "Help" menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(wxID_HELP, wxT("&About..."));
helpMenu->Append(wxID_HELP, wxT("&About"));
wxMenuBar *menuBar = new wxMenuBar;
menuBar->Append(fileMenu, wxT("&File"));
@@ -124,7 +124,7 @@ void MyFrame::OnMenuFileExit( wxCommandEvent& WXUNUSED(event) )
Close(true);
}
// Help|About... command
// Help|About command
void MyFrame::OnMenuHelpAbout( wxCommandEvent& WXUNUSED(event) )
{
wxMessageBox(wxT("OpenGL Penguin Sample (c) Robert Roebling, Sandro Sigala et al"));

View File

@@ -332,7 +332,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
menuFile->Append(Minimal_TestDialog, wxT("&Test dialog\tAlt-T"), wxT("Test dialog"));
menuFile->Append(Minimal_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -2024,7 +2024,7 @@ FormMain::FormMain(const wxString& title, const wxPoint& pos, const wxSize& size
wxMenu *menuTools2 = new wxMenu;
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(ID_ABOUT, wxT("&About..."), wxT("Show about dialog") );
menuHelp->Append(ID_ABOUT, wxT("&About"), wxT("Show about dialog") );
menuTools1->Append(ID_APPENDPROP, wxT("Append New Property") );
menuTools1->Append(ID_APPENDCAT, wxT("Append New Category\tCtrl-S") );

View File

@@ -378,7 +378,7 @@ RegFrame::RegFrame(wxFrame *parent, const wxChar *title, int x, int y, int w, in
wxMenu *pMenuFile = new wxMenu;
pMenuFile->Append(Menu_Test, wxT("Te&st"), wxT("Test key creation"));
pMenuFile->AppendSeparator();
pMenuFile->Append(Menu_About, wxT("&About..."), wxT("Show an extraordinarly beautiful dialog"));
pMenuFile->Append(Menu_About, wxT("&About"), wxT("Show an extraordinarly beautiful dialog"));
pMenuFile->AppendSeparator();
pMenuFile->Append(Menu_Quit, wxT("E&xit"), wxT("Quit this program"));

View File

@@ -597,7 +597,7 @@ MyFrame::MyFrame(const wxString& title, wxWindowID id, const wxPoint& pos,
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(ID_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(ID_About, wxT("&About\tF1"), wxT("Show about dialog"));
fileMenu->Append(wxID_OPEN, wxT("&Open\tCtrl+O"), wxT("Open a file"));
fileMenu->Append(wxID_SAVE, wxT("&Save\tCtrl+S"), wxT("Save a file"));

View File

@@ -211,7 +211,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
// Make menus
m_menuFile = new wxMenu();
m_menuFile->Append(CLIENT_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog"));
m_menuFile->Append(CLIENT_ABOUT, _("&About\tCtrl-A"), _("Show about dialog"));
m_menuFile->AppendSeparator();
m_menuFile->Append(CLIENT_QUIT, _("E&xit\tAlt-X"), _("Quit client"));

View File

@@ -187,7 +187,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
m_menuFile->Append(SERVER_WAITFORACCEPT, "&Wait for connection\tCtrl-W");
m_menuFile->Append(SERVER_UDPTEST, "&UDP test\tCtrl-U");
m_menuFile->AppendSeparator();
m_menuFile->Append(SERVER_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog"));
m_menuFile->Append(SERVER_ABOUT, _("&About\tCtrl-A"), _("Show about dialog"));
m_menuFile->AppendSeparator();
m_menuFile->Append(SERVER_QUIT, _("E&xit\tAlt-X"), _("Quit server"));

View File

@@ -213,7 +213,7 @@ MyFrame::MyFrame(const wxString& title)
playMenu->Append(Sound_PlayBell, wxT("Play system bell"));
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Sound_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Sound_About, wxT("&About\tF1"), wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -182,7 +182,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(wxID_ABOUT, wxT("&About...\tF1"), wxT("Show about frame"));
helpMenu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("Show about frame"));
menuFile->Append(wxID_EXIT, wxT("E&xit\tAlt-X"), wxT("Quit this program"));

View File

@@ -412,7 +412,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
wxT("Toggle status bar format"));
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(StatusBar_About, wxT("&About...\tCtrl-A"),
helpMenu->Append(StatusBar_About, wxT("&About\tCtrl-A"),
wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...

View File

@@ -378,7 +378,7 @@ MyFrame::MyFrame(const wxString& title)
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(THREAD_SHOWCPUS, wxT("&Show CPU count"));
menuHelp->AppendSeparator();
menuHelp->Append(THREAD_ABOUT, wxT("&About..."));
menuHelp->Append(THREAD_ABOUT, wxT("&About"));
menuBar->Append(menuHelp, wxT("&Help"));
SetMenuBar(menuBar);

View File

@@ -228,7 +228,7 @@ MyFrame::MyFrame(const wxString& title, int x, int y, int w, int h)
file_menu->Append(TreeTest_ClearLog, wxT("&Clear log\tCtrl-L"));
file_menu->AppendSeparator();
file_menu->Append(TreeTest_About, wxT("&About..."));
file_menu->Append(TreeTest_About, wxT("&About"));
file_menu->AppendSeparator();
file_menu->Append(TreeTest_Quit, wxT("E&xit\tAlt-X"));
@@ -1606,7 +1606,7 @@ void MyTreeCtrl::ShowMenu(wxTreeItemId id, const wxPoint& pt)
#if wxUSE_MENUS
wxMenu menu(title);
menu.Append(TreeTest_About, wxT("&About..."));
menu.Append(TreeTest_About, wxT("&About"));
menu.AppendSeparator();
menu.Append(TreeTest_Highlight, wxT("&Highlight item"));
menu.Append(TreeTest_Dump, wxT("&Dump"));

View File

@@ -513,7 +513,7 @@ VarScrollFrame::VarScrollFrame()
// the "About" item should be in the help menu
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(VScroll_About, wxT("&About...\tF1"), wxT("Show about dialog"));
menuHelp->Append(VScroll_About, wxT("&About\tF1"), wxT("Show about dialog"));
#ifdef wxHAS_RADIO_MENU_ITEMS
menuMode->AppendRadioItem(VScroll_VScrollMode, wxT("&Vertical\tAlt-V"),

View File

@@ -450,7 +450,7 @@ MyFrame::MyFrame(const wxString& title)
menuOptions->AppendCheckItem(Wizard_ExpandBitmap, wxT("Si&ze Bitmap To Page"));
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Wizard_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Wizard_About, wxT("&About\tF1"), wxT("Show about dialog"));
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();

View File

@@ -84,7 +84,7 @@
<!-- we use wxID_ABOUT name here to get the default menu item stock icon -->
<object class="wxMenuItem" name="wxID_ABOUT">
<label>_About...</label>
<label>_About</label>
<help>About this application</help>
</object>
</object>

View File

@@ -6,7 +6,7 @@
<label>_File</label>
<style>wxMENU_TEAROFF</style>
<object class="wxMenuItem" name="menu_about">
<label>_About...</label>
<label>_About</label>
<bitmap>filesave.gif</bitmap>
</object>
<object class="separator"/>

View File

@@ -169,7 +169,7 @@ MyFrame::MyFrame(const wxString& title)
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(Minimal_About, wxT("&About...\tF1"), wxT("Show about dialog"));
helpMenu->Append(Minimal_About, wxT("&About\tF1"), wxT("Show about dialog"));
fileMenu->Append(Minimal_Persist, wxT("Persist a wxFrame to XML..."),
wxT("Creates a wxFrame using wxXTI and saves its description as XML"));