diff --git a/src/llconclientdlg.cpp b/src/llconclientdlg.cpp index 046922db..39ad07b6 100755 --- a/src/llconclientdlg.cpp +++ b/src/llconclientdlg.cpp @@ -250,7 +250,6 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP, // View menu -------------------------------------------------------------- pViewMenu = new QMenu ( "&View", this ); - pViewMenu->setAccessibleName ( "View menu" ); pViewMenu->addAction ( tr ( "&Chat..." ), this, SLOT ( OnOpenChatDialog() ) ); @@ -266,7 +265,7 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP, // Main menu bar ----------------------------------------------------------- pMenu = new QMenuBar ( this ); - pMenu->setAccessibleName ( "Main menu" ); + pMenu->addMenu ( pViewMenu ); pMenu->addMenu ( new CLlconHelpMenu ( this ) ); diff --git a/src/util.cpp b/src/util.cpp index d6a79564..371f4042 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -403,8 +403,6 @@ QString CAboutDlg::GetVersionAndNameStr ( const bool bWithHtml ) // Help menu ------------------------------------------------------------------- CLlconHelpMenu::CLlconHelpMenu ( QWidget* parent ) : QMenu ( "&?", parent ) { - setAccessibleName ( "Help menu" ); - // standard help menu consists of about and what's this help addAction ( tr ( "What's &This" ), this, SLOT ( OnHelpWhatsThis() ), QKeySequence ( Qt::SHIFT + Qt::Key_F1 ) );