clang-format after spellcheck changes

This commit is contained in:
akallabeth 2024-11-21 09:52:45 +01:00
parent 4f2afa8c47
commit f1e4b30507
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
3 changed files with 9 additions and 6 deletions

View File

@ -145,7 +145,8 @@ public class DoubleGestureDetector
mCurrentDoubleDownEvent.recycle(); mCurrentDoubleDownEvent.recycle();
mCurrentDoubleDownEvent = MotionEvent.obtain(ev); mCurrentDoubleDownEvent = MotionEvent.obtain(ev);
// set detection mode to unknown and send a TOUCH timeout event to detect single taps // set detection mode to unknown and send a TOUCH timeout event to detect single
// taps
mCurrentMode = MODE_UNKNOWN; mCurrentMode = MODE_UNKNOWN;
mHandler.sendEmptyMessageDelayed(TAP, SINGLE_DOUBLE_TOUCH_TIMEOUT); mHandler.sendEmptyMessageDelayed(TAP, SINGLE_DOUBLE_TOUCH_TIMEOUT);

View File

@ -354,8 +354,9 @@ static BOOL monitor_operlaps(const rdpSettings* settings, UINT32 start, UINT32 c
WLog_ERR( WLog_ERR(
TAG, TAG,
"Mulitimonitor mode requested, but local layout has gaps or overlapping areas!"); "Mulitimonitor mode requested, but local layout has gaps or overlapping areas!");
WLog_ERR(TAG, "Please reconfigure your local monitor setup so that there are no gaps or " WLog_ERR(TAG,
"overlapping areas!"); "Please reconfigure your local monitor setup so that there are no gaps or "
"overlapping areas!");
return TRUE; return TRUE;
} }
} }

View File

@ -64,9 +64,10 @@ int TestPathCchAddBackslash(int argc, char* argv[])
if (SUCCEEDED(status)) if (SUCCEEDED(status))
{ {
_tprintf(_T("PathCchAddBackslash unexpectedly succeeded with null buffer. Status: 0x%08") _T( _tprintf(
PRIX32) _T("\n"), _T("PathCchAddBackslash unexpectedly succeeded with null buffer. Status: 0x%08") _T(
status); PRIX32) _T("\n"),
status);
return -1; return -1;
} }