-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index a0622d4..291912c 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -31,2 +31,6 @@ using namespace Opie::Ui; +#ifdef EAST +#include <opie2/oconfig.h> +#endif + MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow(parent, name, WStyle_ContextHelp) { @@ -205,4 +209,6 @@ void MainWindow::initUI() { connect(m_saveScript, SIGNAL(activated()), this, SLOT(slotSaveScript())); - - + + + + /* @@ -224,3 +230,9 @@ void MainWindow::initUI() { /* the scripts menu */ - m_bar->insertItem( tr("Scripts"), m_scripts ); + #ifdef EAST + OConfig cfg("opie-console"); + cfg.setGroup("10east"); + if( !cfg.readEntry("scripthide",0) ) { + m_bar->insertItem( tr("Scripts"), m_scripts ); + } + #endif |