Add missing final newline

This commit is contained in:
a1346054 2021-09-22 20:38:57 +00:00
parent 486545527b
commit 3aee8dd341
No known key found for this signature in database
GPG Key ID: D149AD21DC40440C
8 changed files with 8 additions and 8 deletions

View File

@ -1 +1 @@
theme: jekyll-theme-slate theme: jekyll-theme-slate

View File

@ -1 +1 @@
Made it possible to use keyboard instead of mouse to modify screen layout. Made it possible to use keyboard instead of mouse to modify screen layout.

View File

@ -30,4 +30,4 @@ ArchConsoleStd::writeConsole(ELevel level, const char* str)
std::cout << str << std::endl; std::cout << str << std::endl;
std::cout.flush(); std::cout.flush();
} }

View File

@ -511,4 +511,4 @@ ArchTaskBarWindows::threadEntry(void* self)
HINSTANCE ArchTaskBarWindows::instanceWin32() HINSTANCE ArchTaskBarWindows::instanceWin32()
{ {
return ArchMiscWindows::instanceWin32(); return ArchMiscWindows::instanceWin32();
} }

View File

@ -33,4 +33,4 @@ public:
virtual ~IMSWindowsClipboardFacade() { } virtual ~IMSWindowsClipboardFacade() { }
}; };
#endif #endif

View File

@ -50,4 +50,4 @@ static void add_key(const char * const buffer, std::vector<DWORD> &keys)
} }
} }
return true; return true;
} }

View File

@ -30,4 +30,4 @@ bool WindowsHookResource::unset()
} }
bool WindowsHookResource::is_set() const { return _hook != NULL; } bool WindowsHookResource::is_set() const { return _hook != NULL; }
WindowsHookResource::operator HHOOK() const { return _hook; } WindowsHookResource::operator HHOOK() const { return _hook; }

View File

@ -17,4 +17,4 @@ public:
private: private:
HHOOK _hook; HHOOK _hook;
}; };