summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/default.cpp
authorzecke <zecke>2002-10-08 23:13:17 (UTC)
committer zecke <zecke>2002-10-08 23:13:17 (UTC)
commit8c353ec8b86ee8f82cc25172fb69dd5fee65e848 (patch) (unidiff)
treea4549bcba962689edb9c40efcb23114cae5fcda2 /noncore/apps/opie-console/default.cpp
parentca0c224318a50c6618691fb30f39aa1d9b0b8a4f (diff)
downloadopie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.zip
opie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.tar.gz
opie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.tar.bz2
default I dunno
IOLayerBase the return values for speed()/parity()/flow() added MainWindow debug code :( opie-console.pro addition of serialconfigwidget.* ProfileManager fix removing of Profiles quite rude way of doing it Configure stuff is done and roughly tested The migration is done! TO WAZLAF: you might want to adjust Parity stuff for your needs!
Diffstat (limited to 'noncore/apps/opie-console/default.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/default.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/default.cpp b/noncore/apps/opie-console/default.cpp
index 4ab4695..d9a0557 100644
--- a/noncore/apps/opie-console/default.cpp
+++ b/noncore/apps/opie-console/default.cpp
@@ -1,8 +1,9 @@
1#include "io_serial.h" 1#include "io_serial.h"
2#include "sz_transfer.h" 2#include "sz_transfer.h"
3#include "serialconfigwidget.h"
3#include "terminalwidget.h" 4#include "terminalwidget.h"
4 5
5#include "default.h" 6#include "default.h"
6 7
7extern "C" { 8extern "C" {
8 // FILE Transfer Stuff 9 // FILE Transfer Stuff
@@ -25,14 +26,14 @@ extern "C" {
25 } 26 }
26 IOLayer* newIrDaLayer( const Profile& ) { 27 IOLayer* newIrDaLayer( const Profile& ) {
27 return 0l; 28 return 0l;
28 } 29 }
29 30
30 // Connection Widgets 31 // Connection Widgets
31 ProfileDialogWidget* newSerialWidget(const QString& str, QWidget* ) { 32 ProfileDialogWidget* newSerialWidget(const QString& str, QWidget* wid) {
32 return 0l; 33 return new SerialConfigWidget(str, wid );
33 } 34 }
34 ProfileDialogWidget* newIrDaWidget( const QString& str, QWidget* wid) { 35 ProfileDialogWidget* newIrDaWidget( const QString& str, QWidget* wid) {
35 return newSerialWidget(str, wid); 36 return newSerialWidget(str, wid);
36 } 37 }
37 ProfileDialogWidget* newBTWidget( const QString& str, QWidget* wid) { 38 ProfileDialogWidget* newBTWidget( const QString& str, QWidget* wid) {
38 return newSerialWidget(str, wid ); 39 return newSerialWidget(str, wid );