-rw-r--r-- | noncore/net/opietooth/applet/bluezapplet.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp index 3fdbde0..f1618ae 100644 --- a/noncore/net/opietooth/applet/bluezapplet.cpp +++ b/noncore/net/opietooth/applet/bluezapplet.cpp | |||
@@ -53,24 +53,27 @@ namespace OpieTooth { | |||
53 | setFixedWidth( 14 ); | 53 | setFixedWidth( 14 ); |
54 | bluezOnPixmap = Resource::loadPixmap( "bluetoothapplet/bluezon" ); | 54 | bluezOnPixmap = Resource::loadPixmap( "bluetoothapplet/bluezon" ); |
55 | bluezOffPixmap = Resource::loadPixmap( "bluetoothapplet/bluezoff" ); | 55 | bluezOffPixmap = Resource::loadPixmap( "bluetoothapplet/bluezoff" ); |
56 | // bluezDiscoveryOnPixmap = Resource::loadPixmap( "bluetoothapplet/magglass" ); | 56 | // bluezDiscoveryOnPixmap = Resource::loadPixmap( "bluetoothapplet/magglass" ); |
57 | startTimer(4000); | 57 | startTimer(4000); |
58 | btDevice = 0; | 58 | btDevice = 0; |
59 | bluezactive = false; | 59 | bluezactive = false; |
60 | bluezDiscoveryActive = false; | 60 | bluezDiscoveryActive = false; |
61 | 61 | ||
62 | } | 62 | } |
63 | 63 | ||
64 | BluezApplet::~BluezApplet() { | 64 | BluezApplet::~BluezApplet() { |
65 | if ( btDevice ) { | ||
66 | delete btDevice; | ||
67 | } | ||
65 | } | 68 | } |
66 | 69 | ||
67 | bool BluezApplet::checkBluezStatus() { | 70 | bool BluezApplet::checkBluezStatus() { |
68 | if (btDevice) { | 71 | if (btDevice) { |
69 | if (btDevice->isLoaded() ) { | 72 | if (btDevice->isLoaded() ) { |
70 | return true; | 73 | return true; |
71 | } else { | 74 | } else { |
72 | return false; | 75 | return false; |
73 | } | 76 | } |
74 | } else { | 77 | } else { |
75 | return false; | 78 | return false; |
76 | } | 79 | } |