summaryrefslogtreecommitdiff
authorhash <hash>2002-10-24 08:17:22 (UTC)
committer hash <hash>2002-10-24 08:17:22 (UTC)
commit4e8f0ba4a0c43d3dc4f3c4f89f2d796c3f8e5990 (patch) (side-by-side diff)
treef7c83378e657bcbae6ae505d25214bdac405641a
parent541035d4308ca1931d5068ced83b0cb5350b0766 (diff)
downloadopie-4e8f0ba4a0c43d3dc4f3c4f89f2d796c3f8e5990.zip
opie-4e8f0ba4a0c43d3dc4f3c4f89f2d796c3f8e5990.tar.gz
opie-4e8f0ba4a0c43d3dc4f3c4f89f2d796c3f8e5990.tar.bz2
commented out the other button bar.
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 8e529a3..e2f4d12 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -155,47 +155,48 @@ void MainWindow::initUI() {
m_saveScript = new QAction(tr("Save Script"), QString::null, 0, this, 0);
m_saveScript->addTo(m_scripts);
connect(m_saveScript, SIGNAL(activated()), this, SLOT(slotSaveScript()));
m_runScript = new QAction(tr("Run Script"), QString::null, 0, this, 0);
m_runScript->addTo(m_scripts);
connect(m_runScript, SIGNAL(activated()), this, SLOT(slotRunScript()));
/*
* action that open/closes the keyboard
*/
m_openKeys = new QAction (tr("Open Keyboard..."),
- Resource::loadPixmap( "console/keyboard_icon.png" ),
+ Resource::loadPixmap( "down" ),
QString::null, 0, this, 0);
m_openKeys->setToggleAction(true);
connect (m_openKeys, SIGNAL(toggled(bool)),
this, SLOT(slotOpenKeb(bool)));
m_openKeys->addTo(m_icons);
/*
* action that open/closes the keyboard
- */
+
m_openButtons = new QAction ( tr( "Open Buttons..." ),
- Resource::loadPixmap( "down" ),
+ Resource::loadPixmap( "" ),
QString::null, 0, this, 0 );
m_openButtons->setToggleAction( true );
connect ( m_openButtons, SIGNAL( toggled( bool ) ),
this, SLOT( slotOpenButtons( bool ) ) );
m_openButtons->addTo( m_icons );
+ */
/* insert the submenu */
m_console->insertItem(tr("New from Profile"), m_sessionsPop,
-1, 0);
/* insert the connection menu */
m_bar->insertItem( tr("Connection"), m_console );
/* the scripts menu */
m_bar->insertItem( tr("Scripts"), m_scripts );
/* the settings menu */