-rw-r--r-- | noncore/apps/opie-console/main.cpp | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/main.cpp b/noncore/apps/opie-console/main.cpp index 3b4321a..b17f8e8 100644 --- a/noncore/apps/opie-console/main.cpp +++ b/noncore/apps/opie-console/main.cpp | |||
@@ -102,5 +102,5 @@ int main(int argc, char **argv) { | |||
102 | 102 | ||
103 | MainWindow mw; | 103 | MainWindow mw; |
104 | mw.setCaption(QObject::tr("Opie console") ); | 104 | mw.setCaption(QObject::tr("Opie Console") ); |
105 | app.showMainWidget( &mw ); | 105 | app.showMainWidget( &mw ); |
106 | 106 | ||
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 3acbfad..c48116d 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -55,4 +55,5 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow( | |||
55 | 55 | ||
56 | void MainWindow::initUI() { | 56 | void MainWindow::initUI() { |
57 | |||
57 | setToolBarsMovable( FALSE ); | 58 | setToolBarsMovable( FALSE ); |
58 | 59 | ||
@@ -121,4 +122,5 @@ void MainWindow::initUI() { | |||
121 | m_console->insertSeparator(); | 122 | m_console->insertSeparator(); |
122 | 123 | ||
124 | |||
123 | m_quickLaunch = new QAction( tr("QuickLaunch"), Resource::loadPixmap("console/konsole_mini"), QString::null, 0, this, 0 ); | 125 | m_quickLaunch = new QAction( tr("QuickLaunch"), Resource::loadPixmap("console/konsole_mini"), QString::null, 0, this, 0 ); |
124 | m_quickLaunch->addTo( m_icons ); | 126 | m_quickLaunch->addTo( m_icons ); |
@@ -126,4 +128,6 @@ void MainWindow::initUI() { | |||
126 | this, SLOT( slotQuickLaunch() ) ); | 128 | this, SLOT( slotQuickLaunch() ) ); |
127 | 129 | ||
130 | QWhatsThis::add( m_icons, tr( "The shell button launches the \"default\" profile. If there is none default values are taken" ) ); | ||
131 | |||
128 | m_transfer = new QAction( tr("Transfer file..."), Resource::loadPixmap("pass") , QString::null, | 132 | m_transfer = new QAction( tr("Transfer file..."), Resource::loadPixmap("pass") , QString::null, |
129 | 0, this, 0 ); | 133 | 0, this, 0 ); |
@@ -236,5 +240,5 @@ void MainWindow::initUI() { | |||
236 | 240 | ||
237 | newCon->addTo( m_icons ); | 241 | newCon->addTo( m_icons ); |
238 | m_setProfiles->addTo( m_icons ); | 242 | //m_setProfiles->addTo( m_icons ); |
239 | paste->addTo( m_icons ); | 243 | paste->addTo( m_icons ); |
240 | m_openKeys->addTo(m_icons); | 244 | m_openKeys->addTo(m_icons); |
@@ -263,4 +267,5 @@ void MainWindow::initUI() { | |||
263 | setCentralWidget( m_consoleWindow ); | 267 | setCentralWidget( m_consoleWindow ); |
264 | 268 | ||
269 | slotQuickLaunch(); | ||
265 | } | 270 | } |
266 | 271 | ||