summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothlocaldevice_p.cpp
diff options
context:
space:
mode:
authorOleg Shparber <trollixx@gmail.com>2014-04-23 00:50:08 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-23 17:30:05 +0200
commit34b32040ec0e80108890c0f97bcdc85989200409 (patch)
tree889090e214d59ef7b20f938b2005a6c7379d6781 /src/bluetooth/qbluetoothlocaldevice_p.cpp
parent347afa3ec58f82da2e4059c1241f3fdd8c5ad2e7 (diff)
Fix coding style in QBluetooth
Affected: QBluetooth, QBluetoothAddress, QBluetoothDeviceDiscoveryAgent, QBluetoothDeviceInfo, QBluetoothHostInfo, QBluetoothLocalDevice Change-Id: Ia5af61f87eafecfba56b75fa61b81014cdd38960 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'src/bluetooth/qbluetoothlocaldevice_p.cpp')
-rw-r--r--src/bluetooth/qbluetoothlocaldevice_p.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bluetooth/qbluetoothlocaldevice_p.cpp b/src/bluetooth/qbluetoothlocaldevice_p.cpp
index d40e6473..6fedafc7 100644
--- a/src/bluetooth/qbluetoothlocaldevice_p.cpp
+++ b/src/bluetooth/qbluetoothlocaldevice_p.cpp
@@ -39,19 +39,20 @@
**
****************************************************************************/
-
#include "qbluetoothlocaldevice.h"
#include "qbluetoothaddress.h"
QT_BEGIN_NAMESPACE
QBluetoothLocalDevice::QBluetoothLocalDevice(QObject *parent) :
- QObject(parent), d_ptr(0)
+ QObject(parent),
+ d_ptr(0)
{
}
QBluetoothLocalDevice::QBluetoothLocalDevice(const QBluetoothAddress &, QObject *parent) :
- QObject(parent), d_ptr(0)
+ QObject(parent),
+ d_ptr(0)
{
}
@@ -96,7 +97,8 @@ void QBluetoothLocalDevice::requestPairing(const QBluetoothAddress &address, Pai
Q_UNUSED(pairing);
}
-QBluetoothLocalDevice::Pairing QBluetoothLocalDevice::pairingStatus(const QBluetoothAddress &address) const
+QBluetoothLocalDevice::Pairing QBluetoothLocalDevice::pairingStatus(
+ const QBluetoothAddress &address) const
{
Q_UNUSED(address);
return Unpaired;