author | harlekin <harlekin> | 2002-10-24 13:49:31 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-24 13:49:31 (UTC) |
commit | 9de347605b9457a0d5b56e1f951c143a71acf6ac (patch) (side-by-side diff) | |
tree | a1a319840af28728154c6363b5d81fb7e4a87d23 /noncore | |
parent | 549a3104fe5213797d98487e470ce5c86ee62e10 (diff) | |
download | opie-9de347605b9457a0d5b56e1f951c143a71acf6ac.zip opie-9de347605b9457a0d5b56e1f951c143a71acf6ac.tar.gz opie-9de347605b9457a0d5b56e1f951c143a71acf6ac.tar.bz2 |
forgot tr()
-rw-r--r-- | noncore/apps/opie-console/BUGS | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/profileeditordialog.cpp | 3 |
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 - help documentation needs to be extended - new connection and save connection - paste button - keys button +- 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 @@ #include <qmessagebox.h> #include <qstringlist.h> #include <qcombobox.h> #include <qcheckbox.h> #include <qscrollview.h> -//#include "profileeditorplugins.h" #include "metafactory.h" #include "profileeditordialog.h" namespace { void setCurrent( const QString& str, QComboBox* bo ) { for (int i = 0; i < bo->count(); i++ ) { @@ -198,13 +197,13 @@ void ProfileEditorDialog::slotConActivated( const QString& str ) { m_con = new NoOptions( str, m_svCon->viewport(), "name"); } // FIXME ugly hack right. Right solution would be to look into the layer and see if it // supports auto connect and then set it as prefered //if ( ( )->layer()->supports()[0] == 1 ) { - if ( m_conCmb ->currentText() == "local Console" ) { + if ( m_conCmb ->currentText() == tr("local Console") ) { m_autoConnect->setChecked( true ); } else { m_autoConnect->setChecked( false ); } m_con->load( m_prof ); |