-rw-r--r-- | noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp | 8 | ||||
-rw-r--r-- | noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.cpp | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp index 1743c1d..73312c6 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp @@ -18,12 +18,20 @@ QWidget * ABluetoothBNEP::edit( QWidget * parent ) { GUI->showData( Data ); return GUI; } QString ABluetoothBNEP::acceptable( void ) { return ( GUI ) ? GUI->acceptable( ) : QString(); } void ABluetoothBNEP::commit( void ) { if( GUI && GUI->commit( Data ) ) setModified( 1 ); } + +bool ABluetoothBNEP::hasDataFor( const QString & ) { + return 0; +} + +bool ABluetoothBNEP::generateDataForCommonFile( SystemFile & , long ){ + return 0; +} diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.cpp index 7ec8288..cff2639 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.cpp @@ -19,12 +19,20 @@ QWidget * ABluetoothRFCOMM::edit( QWidget * parent ) { GUI->showData( Data ); return GUI; } QString ABluetoothRFCOMM::acceptable( void ) { return ( GUI ) ? GUI->acceptable( ) : QString(); } void ABluetoothRFCOMM::commit( void ) { if( GUI->commit( Data ) ) setModified( 1 ); } + +bool ABluetoothRFCOMM::hasDataFor( const QString & ) { + return 0; +} + +bool ABluetoothRFCOMM::generateDataForCommonFile( SystemFile & , long ){ + return 0; +} |