chore: Adjust Clang-format linter rules

120 Column Lines
 Block Indent for Bracket Align
 Custom Line Break Rules
 No Single Line Functions
This commit is contained in:
sithlord48
2024-10-17 14:04:35 -04:00
committed by Nick Bolton
parent 3f2bb2531a
commit 9b9ecb0d05
633 changed files with 14725 additions and 11479 deletions

View File

@ -31,29 +31,33 @@
// ClientProxy1_4
//
ClientProxy1_4::ClientProxy1_4(
const String &name, deskflow::IStream *stream, Server *server,
IEventQueue *events)
ClientProxy1_4::ClientProxy1_4(const String &name, deskflow::IStream *stream, Server *server, IEventQueue *events)
: ClientProxy1_3(name, stream, events),
m_server(server) {
m_server(server)
{
assert(m_server != NULL);
}
ClientProxy1_4::~ClientProxy1_4() {}
ClientProxy1_4::~ClientProxy1_4()
{
}
void ClientProxy1_4::keyDown(
KeyID key, KeyModifierMask mask, KeyButton button, const String &lang) {
void ClientProxy1_4::keyDown(KeyID key, KeyModifierMask mask, KeyButton button, const String &lang)
{
ClientProxy1_3::keyDown(key, mask, button, lang);
}
void ClientProxy1_4::keyRepeat(
KeyID key, KeyModifierMask mask, SInt32 count, KeyButton button,
const String &lang) {
void ClientProxy1_4::keyRepeat(KeyID key, KeyModifierMask mask, SInt32 count, KeyButton button, const String &lang)
{
ClientProxy1_3::keyRepeat(key, mask, count, button, lang);
}
void ClientProxy1_4::keyUp(KeyID key, KeyModifierMask mask, KeyButton button) {
void ClientProxy1_4::keyUp(KeyID key, KeyModifierMask mask, KeyButton button)
{
ClientProxy1_3::keyUp(key, mask, button);
}
void ClientProxy1_4::keepAlive() { ClientProxy1_3::keepAlive(); }
void ClientProxy1_4::keepAlive()
{
ClientProxy1_3::keepAlive();
}