From 3067560f7bc7fda30dd002ade969bacb368b1292 Mon Sep 17 00:00:00 2001 From: "Jerry (Xinyu Hou)" Date: Mon, 30 Nov 2015 10:57:12 -0800 Subject: [PATCH] Fix indentations --- src/lib/server/Server.cpp | 8 ++++---- src/lib/synergy/DpiHelper.cpp | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/lib/server/Server.cpp b/src/lib/server/Server.cpp index 30e2e2ca..3c9114e4 100644 --- a/src/lib/server/Server.cpp +++ b/src/lib/server/Server.cpp @@ -516,10 +516,10 @@ Server::switchScreen(BaseClientProxy* dst, // send the clipboard data to new active screen m_sendClipboardThread = new Thread( - new TMethodJob( - this, - &Server::sendClipboardThread, - NULL)); + new TMethodJob( + this, + &Server::sendClipboardThread, + NULL)); Server::SwitchToScreenInfo* info = Server::SwitchToScreenInfo::alloc(m_active->getName()); diff --git a/src/lib/synergy/DpiHelper.cpp b/src/lib/synergy/DpiHelper.cpp index 67423cc5..2f2ffcb7 100644 --- a/src/lib/synergy/DpiHelper.cpp +++ b/src/lib/synergy/DpiHelper.cpp @@ -46,7 +46,8 @@ void DpiHelper::calculateDpi(size_t width, size_t height) s_dpiScaled = true; LOG((CLOG_DEBUG "DPI: %d%%", s_dpi)); - LOG((CLOG_DEBUG "physical resolution: %d, %d scaled resolution: %d, %d", s_resolutionWidth, s_resolutionHeight, width, height)); + LOG((CLOG_DEBUG "physical resolution: %d, %d scaled resolution: %d, %d", + s_resolutionWidth, s_resolutionHeight, width, height)); } } }