-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 408d3dd..3066b35 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -60,3 +60,3 @@ void MainWindow::initUI() { m_sessionsPop= new QPopupMenu( this ); - m_settings = new QPopupMenu( this ); + //m_settings = new QPopupMenu( this ); @@ -65,2 +65,18 @@ void MainWindow::initUI() { + + + + /* + * the settings action + */ + m_setProfiles = new QAction(tr("Configure Profiles"), + Resource::loadPixmap( "SettingsIcon" ), + QString::null, 0, this, 0); + // m_setProfiles->addTo( m_settings ); + m_setProfiles->addTo( m_icons ); + m_setProfiles->addTo( m_console ); + connect( m_setProfiles, SIGNAL(activated() ), + this, SLOT(slotConfigure() ) ); + + /* @@ -128,12 +144,2 @@ void MainWindow::initUI() { - /* - * the settings action - */ - m_setProfiles = new QAction(tr("Configure Profiles"), - Resource::loadPixmap( "SettingsIcon" ), - QString::null, 0, this, 0); - m_setProfiles->addTo( m_settings ); - m_setProfiles->addTo( m_icons ); - connect( m_setProfiles, SIGNAL(activated() ), - this, SLOT(slotConfigure() ) ); @@ -179,3 +185,3 @@ void MainWindow::initUI() { /* the settings menu */ - m_bar->insertItem( tr("Settings"), m_settings ); + // m_bar->insertItem( tr("Settings"), m_settings ); |