author | harlekin <harlekin> | 2002-10-24 21:01:21 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-24 21:01:21 (UTC) |
commit | a8b95086dd331c67c728a346f56416c355142758 (patch) (unidiff) | |
tree | 1df20d3dfa7231005f9417c5cd318685d675efad | |
parent | 52266c9462d599ab3268bddb301698c90bb0212c (diff) | |
download | opie-a8b95086dd331c67c728a346f56416c355142758.zip opie-a8b95086dd331c67c728a346f56416c355142758.tar.gz opie-a8b95086dd331c67c728a346f56416c355142758.tar.bz2 |
give new connection a caption
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/modemconfigwidget.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index ccecdf8..c44b359 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -390,6 +390,7 @@ QList<Session> MainWindow::sessions() { | |||
390 | void MainWindow::slotNew() { | 390 | void MainWindow::slotNew() { |
391 | ProfileEditorDialog dlg(factory() ); | 391 | ProfileEditorDialog dlg(factory() ); |
392 | dlg.showMaximized(); | 392 | dlg.showMaximized(); |
393 | dlg.setCaption( tr("New Connection") ); | ||
393 | int ret = dlg.exec(); | 394 | int ret = dlg.exec(); |
394 | 395 | ||
395 | if ( ret == QDialog::Accepted ) { | 396 | if ( ret == QDialog::Accepted ) { |
diff --git a/noncore/apps/opie-console/modemconfigwidget.cpp b/noncore/apps/opie-console/modemconfigwidget.cpp index da5db83..ec83b9f 100644 --- a/noncore/apps/opie-console/modemconfigwidget.cpp +++ b/noncore/apps/opie-console/modemconfigwidget.cpp | |||
@@ -38,6 +38,7 @@ ModemConfigWidget::ModemConfigWidget( const QString& name, QWidget* parent, | |||
38 | QHBox *buttonBox = new QHBox( this ); | 38 | QHBox *buttonBox = new QHBox( this ); |
39 | QPushButton *atButton = new QPushButton( buttonBox ); | 39 | QPushButton *atButton = new QPushButton( buttonBox ); |
40 | atButton->setText( tr( "AT commands" ) ); | 40 | atButton->setText( tr( "AT commands" ) ); |
41 | // disabled for now | ||
41 | atButton->hide(); | 42 | atButton->hide(); |
42 | connect( atButton, SIGNAL( clicked() ), this, SLOT( slotAT() ) ); | 43 | connect( atButton, SIGNAL( clicked() ), this, SLOT( slotAT() ) ); |
43 | 44 | ||