summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothBNEPedit.cpp
blob: 9a3156b3dcbb5f13f0830e3a9f33c0a2340cf4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <qtopia/qcopenvelope_qws.h>

#include <GUIUtils.h>
#include "bluetoothBNEPedit.h"


BluetoothBNEPEdit::BluetoothBNEPEdit( QWidget * Parent ) : BluetoothBNEPGUI( Parent ){

}

QString BluetoothBNEPEdit::acceptable( void ) {
    return QString();
}

bool BluetoothBNEPEdit::commit( BluetoothBNEPData & ) {
    return 0;
}

void BluetoothBNEPEdit::showData( BluetoothBNEPData & ) {
}

void BluetoothBNEPEdit::SLOT_StartBTMgr( void ) {
      QCopEnvelope e( "QPE/System", "execute(QString)" );
              e << QString( "bluetooth-manager" );

}