summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorharlekin <harlekin>2002-10-24 13:27:07 (UTC)
committer harlekin <harlekin>2002-10-24 13:27:07 (UTC)
commit22b0ba0100376c6406d3ee0ea65b013660ebaea0 (patch) (unidiff)
tree32943709e115104d036a3b4bdbc030b90075b97f /noncore/apps/opie-console
parentb007fdcf8708d377a25c93de49c4febb19651e1a (diff)
downloadopie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.zip
opie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.tar.gz
opie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.tar.bz2
set autoconnect by default for local console mode
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/BUGS14
-rw-r--r--noncore/apps/opie-console/io_layer.h4
-rw-r--r--noncore/apps/opie-console/profileeditordialog.cpp10
3 files changed, 12 insertions, 16 deletions
diff --git a/noncore/apps/opie-console/BUGS b/noncore/apps/opie-console/BUGS
index b9d8ca3..7fae567 100644
--- a/noncore/apps/opie-console/BUGS
+++ b/noncore/apps/opie-console/BUGS
@@ -8,4 +8,2 @@ Send/receive: lrzsz behaves strange when trying to use
8 8
9- console should autoconnect by default
10
11- keys and buttonbar merge 9- keys and buttonbar merge
@@ -23,14 +21,2 @@ Send/receive: lrzsz behaves strange when trying to use
23 21
24- kill more compiler warnings.
25
26- more colorshemes ( "orange is ugly" )
27
28- irda and bluetooth out ( can be done with normal serial as long as the
29connection is allready up, and extended stuff is a lot of work; maybe later
30in again ).
31
32- new conntection -> configure -> use . does not end up in profile dialog,
33
34- disable tranfer file for console mode
35
36- scripts need an extension and also an icon 22- scripts need an extension and also an icon
diff --git a/noncore/apps/opie-console/io_layer.h b/noncore/apps/opie-console/io_layer.h
index 97a1e1c..af61099 100644
--- a/noncore/apps/opie-console/io_layer.h
+++ b/noncore/apps/opie-console/io_layer.h
@@ -30,4 +30,4 @@ public:
30 AutoConnect = 0, 30 AutoConnect = 0,
31 TransferFile =1, 31 TransferFile = 1,
32 Close =2 32 Close = 2
33 }; 33 };
diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp
index 9890c3e..127009b 100644
--- a/noncore/apps/opie-console/profileeditordialog.cpp
+++ b/noncore/apps/opie-console/profileeditordialog.cpp
@@ -199,2 +199,12 @@ void ProfileEditorDialog::slotConActivated( const QString& str ) {
199 } 199 }
200
201 // 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
203 //if ( ( )->layer()->supports()[0] == 1 ) {
204 if ( m_conCmb ->currentText() == "local Console" ) {
205 m_autoConnect->setChecked( true );
206 } else {
207 m_autoConnect->setChecked( false );
208 }
209
200 m_con->load( m_prof ); 210 m_con->load( m_prof );