summaryrefslogtreecommitdiff
path: root/noncore/apps
authorharlekin <harlekin>2002-10-24 13:49:31 (UTC)
committer harlekin <harlekin>2002-10-24 13:49:31 (UTC)
commit9de347605b9457a0d5b56e1f951c143a71acf6ac (patch) (unidiff)
treea1a319840af28728154c6363b5d81fb7e4a87d23 /noncore/apps
parent549a3104fe5213797d98487e470ce5c86ee62e10 (diff)
downloadopie-9de347605b9457a0d5b56e1f951c143a71acf6ac.zip
opie-9de347605b9457a0d5b56e1f951c143a71acf6ac.tar.gz
opie-9de347605b9457a0d5b56e1f951c143a71acf6ac.tar.bz2
forgot tr()
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/BUGS1
-rw-r--r--noncore/apps/opie-console/profileeditordialog.cpp3
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/BUGS b/noncore/apps/opie-console/BUGS
index e6339e1..8195dc5 100644
--- a/noncore/apps/opie-console/BUGS
+++ b/noncore/apps/opie-console/BUGS
@@ -26,6 +26,7 @@ connection its used on
26 26
27- help documentation needs to be extended 27- help documentation needs to be extended
28 - new connection and save connection 28 - new connection and save connection
29 - paste button 29 - paste button
30 - keys button 30 - keys button
31 31
32- exit / strg + d does not close conection / tab \ No newline at end of file
diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp
index 127009b..36daaef 100644
--- a/noncore/apps/opie-console/profileeditordialog.cpp
+++ b/noncore/apps/opie-console/profileeditordialog.cpp
@@ -4,13 +4,12 @@
4#include <qmessagebox.h> 4#include <qmessagebox.h>
5#include <qstringlist.h> 5#include <qstringlist.h>
6#include <qcombobox.h> 6#include <qcombobox.h>
7#include <qcheckbox.h> 7#include <qcheckbox.h>
8#include <qscrollview.h> 8#include <qscrollview.h>
9 9
10//#include "profileeditorplugins.h"
11#include "metafactory.h" 10#include "metafactory.h"
12#include "profileeditordialog.h" 11#include "profileeditordialog.h"
13 12
14namespace { 13namespace {
15 void setCurrent( const QString& str, QComboBox* bo ) { 14 void setCurrent( const QString& str, QComboBox* bo ) {
16 for (int i = 0; i < bo->count(); i++ ) { 15 for (int i = 0; i < bo->count(); i++ ) {
@@ -198,13 +197,13 @@ void ProfileEditorDialog::slotConActivated( const QString& str ) {
198 m_con = new NoOptions( str, m_svCon->viewport(), "name"); 197 m_con = new NoOptions( str, m_svCon->viewport(), "name");
199 } 198 }
200 199
201 // FIXME ugly hack right. Right solution would be to look into the layer and see if it 200 // FIXME ugly hack right. Right solution would be to look into the layer and see if it
202 // supports auto connect and then set it as prefered 201 // supports auto connect and then set it as prefered
203 //if ( ( )->layer()->supports()[0] == 1 ) { 202 //if ( ( )->layer()->supports()[0] == 1 ) {
204 if ( m_conCmb ->currentText() == "local Console" ) { 203 if ( m_conCmb ->currentText() == tr("local Console") ) {
205 m_autoConnect->setChecked( true ); 204 m_autoConnect->setChecked( true );
206 } else { 205 } else {
207 m_autoConnect->setChecked( false ); 206 m_autoConnect->setChecked( false );
208 } 207 }
209 208
210 m_con->load( m_prof ); 209 m_con->load( m_prof );