Fix clang format
This commit is contained in:
parent
fdc2ed37cc
commit
626dc1006a
8 changed files with 42 additions and 8 deletions
|
@ -34,7 +34,12 @@ protected:
|
|||
bool doKill() override;
|
||||
|
||||
private:
|
||||
enum { NoPortAvailable = UserDefinedError, SendingNetworkPacketFailed, SocketError, SslError };
|
||||
enum {
|
||||
NoPortAvailable = UserDefinedError,
|
||||
SendingNetworkPacketFailed,
|
||||
SocketError,
|
||||
SslError,
|
||||
};
|
||||
|
||||
Server *const m_server;
|
||||
QSslSocket *m_socket;
|
||||
|
|
|
@ -14,7 +14,10 @@ class KDECONNECTCORE_EXPORT NotificationServerInfo : public QObject
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum Hint { X_KDE_DISPLAY_APPNAME = 1, X_KDE_ORIGIN_NAME = 2 };
|
||||
enum Hint {
|
||||
X_KDE_DISPLAY_APPNAME = 1,
|
||||
X_KDE_ORIGIN_NAME = 2,
|
||||
};
|
||||
|
||||
Q_DECLARE_FLAGS(Hints, Hint)
|
||||
|
||||
|
|
|
@ -23,7 +23,11 @@ class KDECONNECTINTERFACES_EXPORT CommandsModel : public QAbstractListModel
|
|||
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
||||
|
||||
public:
|
||||
enum ModelRoles { KeyRole, NameRole, CommandRole };
|
||||
enum ModelRoles {
|
||||
KeyRole,
|
||||
NameRole,
|
||||
CommandRole,
|
||||
};
|
||||
|
||||
explicit CommandsModel(QObject *parent = nullptr);
|
||||
~CommandsModel() override;
|
||||
|
|
|
@ -23,7 +23,11 @@ class KDECONNECTINTERFACES_EXPORT RemoteCommandsModel : public QAbstractListMode
|
|||
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
||||
|
||||
public:
|
||||
enum ModelRoles { KeyRole, NameRole, CommandRole };
|
||||
enum ModelRoles {
|
||||
KeyRole,
|
||||
NameRole,
|
||||
CommandRole,
|
||||
};
|
||||
|
||||
explicit RemoteCommandsModel(QObject *parent = nullptr);
|
||||
~RemoteCommandsModel() override;
|
||||
|
|
|
@ -25,7 +25,13 @@ class KDECONNECTINTERFACES_EXPORT RemoteSinksModel : public QAbstractListModel
|
|||
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
||||
|
||||
public:
|
||||
enum ModelRoles { NameRole, DescriptionRole, MaxVolumeRole, VolumeRole, MutedRole };
|
||||
enum ModelRoles {
|
||||
NameRole,
|
||||
DescriptionRole,
|
||||
MaxVolumeRole,
|
||||
VolumeRole,
|
||||
MutedRole,
|
||||
};
|
||||
|
||||
explicit RemoteSinksModel(QObject *parent = nullptr);
|
||||
~RemoteSinksModel() override;
|
||||
|
|
|
@ -36,7 +36,10 @@ private:
|
|||
// Keep these values in sync with THRESHOLD* constants in
|
||||
// kdeconnect-android:BatteryPlugin.java
|
||||
// see README for their meaning
|
||||
enum ThresholdBatteryEvent { ThresholdNone = 0, ThresholdBatteryLow = 1 };
|
||||
enum ThresholdBatteryEvent {
|
||||
ThresholdNone = 0,
|
||||
ThresholdBatteryLow = 1,
|
||||
};
|
||||
|
||||
int m_charge = -1;
|
||||
bool m_isCharging = false;
|
||||
|
|
|
@ -24,7 +24,10 @@ class ClipboardListener : public QObject
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum ClipboardContentType { ClipboardContentTypeUnknown = 0, ClipboardContentTypePassword = 1 };
|
||||
enum ClipboardContentType {
|
||||
ClipboardContentTypeUnknown = 0,
|
||||
ClipboardContentTypePassword = 1,
|
||||
};
|
||||
|
||||
protected:
|
||||
ClipboardListener();
|
||||
|
|
|
@ -15,7 +15,13 @@
|
|||
#include <X11/keysym.h>
|
||||
#include <fakekey/fakekey.h>
|
||||
|
||||
enum MouseButtons { LeftMouseButton = 1, MiddleMouseButton = 2, RightMouseButton = 3, MouseWheelUp = 4, MouseWheelDown = 5 };
|
||||
enum MouseButtons {
|
||||
LeftMouseButton = 1,
|
||||
MiddleMouseButton = 2,
|
||||
RightMouseButton = 3,
|
||||
MouseWheelUp = 4,
|
||||
MouseWheelDown = 5,
|
||||
};
|
||||
|
||||
// Translation table to keep in sync within all the implementations
|
||||
int SpecialKeysMap[] = {
|
||||
|
|
Loading…
Reference in a new issue