summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/default.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/default.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/default.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/default.cpp b/noncore/apps/opie-console/default.cpp
index ce5c870..5c1c05a 100644
--- a/noncore/apps/opie-console/default.cpp
+++ b/noncore/apps/opie-console/default.cpp
@@ -3,2 +3,3 @@
3#include "io_bt.h" 3#include "io_bt.h"
4#include "io_modem.h"
4#include "filetransfer.h" 5#include "filetransfer.h"
@@ -47,2 +48,5 @@ extern "C" {
47 } 48 }
49 IOLayer* newModemLayer( const Profile& prof ) {
50 return new IOModem( prof );
51 }
48 52
@@ -87,2 +91,3 @@ Default::Default( MetaFactory* fact ) {
87 fact->addIOLayerFactory( "bt", QObject::tr("Bluetooth"), newBTLayer ); 91 fact->addIOLayerFactory( "bt", QObject::tr("Bluetooth"), newBTLayer );
92 fact->addIOLayerFactory( "modem", QObject::tr("Modem"), newModemLayer );
88 93