summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimur Pocheptsov <Timur.Pocheptsov@digia.com>2014-12-17 12:52:29 +0100
committerTimur Pocheptsov <Timur.Pocheptsov@digia.com>2014-12-18 14:23:27 +0100
commitec2319c59e0ec83c8dbb91ebcf945c5945fb2447 (patch)
tree661668bf9f2b19dc95764b3f4f8591b91abfa68b /src
parent8da52103171651f459d2e242f6f44ed982433f96 (diff)
Bluetooth socket listener (OS X)
Replace handwritten function names with Q_FUNC_INFO. Change-Id: Ia12728eb53dc63ac1ca0d2a76bbf2baa06db0ea0 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/bluetooth/osx/osxbtsocketlistener.mm20
1 files changed, 6 insertions, 14 deletions
diff --git a/src/bluetooth/osx/osxbtsocketlistener.mm b/src/bluetooth/osx/osxbtsocketlistener.mm
index 125f910a..ab7affbe 100644
--- a/src/bluetooth/osx/osxbtsocketlistener.mm
+++ b/src/bluetooth/osx/osxbtsocketlistener.mm
@@ -34,13 +34,9 @@
#include "osxbtsocketlistener_p.h"
#include "osxbtutility_p.h"
-#include <QtCore/qloggingcategory.h>
#include <QtCore/qdebug.h>
-// Imports, since these are Objective-C headers and
-// they do not have inclusion guards.
-#import <IOBluetooth/objc/IOBluetoothRFCOMMChannel.h>
-#import <IOBluetooth/objc/IOBluetoothL2CAPChannel.h>
+#include "corebluetoothwrapper_p.h"
QT_BEGIN_NAMESPACE
@@ -64,7 +60,7 @@ using namespace QT_NAMESPACE;
- (id)initWithListener:(OSXBluetooth::SocketListener *)aDelegate
{
- Q_ASSERT_X(aDelegate, "-initWithListener:", "invalid delegate (null)");
+ Q_ASSERT_X(aDelegate, Q_FUNC_INFO, "invalid delegate (null)");
if (self = [super init]) {
connectionNotification = nil;
delegate = aDelegate;
@@ -84,8 +80,7 @@ using namespace QT_NAMESPACE;
- (bool)listenRFCOMMConnectionsWithChannelID:(BluetoothRFCOMMChannelID)channelID
{
- Q_ASSERT_X(!connectionNotification, "-listenRFCOMMConnectionsWithChannelID",
- "already listening");
+ Q_ASSERT_X(!connectionNotification, Q_FUNC_INFO, "already listening");
connectionNotification = [IOBluetoothRFCOMMChannel registerForChannelOpenNotifications:self
selector:@selector(rfcommOpenNotification:channel:)
@@ -100,8 +95,7 @@ using namespace QT_NAMESPACE;
- (bool)listenL2CAPConnectionsWithPSM:(BluetoothL2CAPPSM)psm
{
- Q_ASSERT_X(!connectionNotification, "-listenL2CAPConnectionsWithPSM:",
- "already listening");
+ Q_ASSERT_X(!connectionNotification, Q_FUNC_INFO, "already listening");
connectionNotification = [IOBluetoothL2CAPChannel registerForChannelOpenNotifications:self
selector:@selector(l2capOpenNotification:channel:)
@@ -119,8 +113,7 @@ using namespace QT_NAMESPACE;
{
Q_UNUSED(notification)
- Q_ASSERT_X(delegate, "-rfcommOpenNotification:channel:",
- "invalid delegate (null)");
+ Q_ASSERT_X(delegate, Q_FUNC_INFO, "invalid delegate (null)");
delegate->openNotify(newChannel);
}
@@ -129,8 +122,7 @@ using namespace QT_NAMESPACE;
{
Q_UNUSED(notification)
- Q_ASSERT_X(delegate, "-l2capOpenNotification:channel:",
- "invalid delegate (null)");
+ Q_ASSERT_X(delegate, Q_FUNC_INFO, "invalid delegate (null)");
delegate->openNotify(newChannel);
}