author | ibotty <ibotty> | 2002-10-11 18:40:51 (UTC) |
---|---|---|
committer | ibotty <ibotty> | 2002-10-11 18:40:51 (UTC) |
commit | b6822170c525fd2cebf31647db4435f995fa9d63 (patch) (side-by-side diff) | |
tree | e77c83e95e34519fba441eb080ee5a238f3f7b0c | |
parent | 35c5d56d076786fd175655e7b2fc4b93cd433a86 (diff) | |
download | opie-b6822170c525fd2cebf31647db4435f995fa9d63.zip opie-b6822170c525fd2cebf31647db4435f995fa9d63.tar.gz opie-b6822170c525fd2cebf31647db4435f995fa9d63.tar.bz2 |
altered, to use widgetLayer over widget
-rw-r--r-- | noncore/apps/opie-console/default.cpp | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/default.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/default.cpp b/noncore/apps/opie-console/default.cpp index 62f02f5..a6c3bc4 100644 --- a/noncore/apps/opie-console/default.cpp +++ b/noncore/apps/opie-console/default.cpp @@ -39,25 +39,25 @@ extern "C" { return new IrdaConfigWidget( str, wid ); } ProfileDialogWidget* newBTWidget( const QString& str, QWidget* wid ) { return new BTConfigWidget(str, wid ); } // Terminal Widget(s) ProfileDialogWidget* newTerminalWidget(const QString& na, QWidget* wid) { return new TerminalWidget(na, wid,0 ); } // VT Emulations - EmulationLayer* newVT102( Widget* wid ) { + EmulationLayer* newVT102( WidgetLayer* wid ) { return new Vt102Emulation( wid ); } }; Default::Default( MetaFactory* fact ) { fact->addFileTransferLayer( "SZ", QObject::tr("Z-Modem"), newSZTransfer ); fact->addFileTransferLayer( "SY", QObject::tr("Y-Modem"), newSYTransfer ); fact->addFileTransferLayer( "SX", QObject::tr("X-Modem"), newSXTransfer ); fact->addIOLayerFactory( "serial", QObject::tr("Serial"), newSerialLayer ); fact->addIOLayerFactory( "irda", QObject::tr("Infrared"), newIrDaLayer ); diff --git a/noncore/apps/opie-console/default.h b/noncore/apps/opie-console/default.h index b9af898..4d51db8 100644 --- a/noncore/apps/opie-console/default.h +++ b/noncore/apps/opie-console/default.h @@ -11,24 +11,24 @@ extern "C" { FileTransferLayer* newSXTransfer(IOLayer*); IOLayer* newSerialLayer(const Profile&); IOLayer* newBTLayer(const Profile& ); IOLayer* newIrDaLayer(const Profile& ); ProfileDialogWidget* newSerialWidget(const QString&, QWidget* ); ProfileDialogWidget* newIrDaWidget (const QString&, QWidget* ); ProfileDialogWidget* newBTWidget (const QString&, QWidget* ); ProfileDialogWidget* newTerminalWidget(const QString&, QWidget* ); - EmulationLayer* newVT102( Widget* ); + EmulationLayer* newVT102( WidgetLayer* ); }; class MetaFactory; struct Default { public: Default(MetaFactory* ); ~Default(); }; #endif |