Fix clang format

This commit is contained in:
Carl Schwan 2024-11-05 23:35:14 +01:00
parent fdc2ed37cc
commit 626dc1006a
No known key found for this signature in database
GPG key ID: 02325448204E452A
8 changed files with 42 additions and 8 deletions

View file

@ -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;

View file

@ -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)

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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();

View file

@ -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[] = {