diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-15 02:00:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-15 02:00:59 +0300 |
commit | 982f164a4908ff0173f09ace321c5b4c6fc26c67 (patch) | |
tree | 1a0b9fb54b2aff51a9f920b7c37010c6d002f07b | |
parent | 14417a34d5e4272693eff6deb9d1aabcbb94cf16 (diff) | |
download | plus-982f164a4908ff0173f09ace321c5b4c6fc26c67.tar.gz plus-982f164a4908ff0173f09ace321c5b4c6fc26c67.tar.bz2 plus-982f164a4908ff0173f09ace321c5b4c6fc26c67.tar.xz plus-982f164a4908ff0173f09ace321c5b4c6fc26c67.zip |
Fix too long line in windowmanager.cpp
-rw-r--r-- | src/gui/windowmanager.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/windowmanager.cpp b/src/gui/windowmanager.cpp index 7d6f6ff6c..4f51ef525 100644 --- a/src/gui/windowmanager.cpp +++ b/src/gui/windowmanager.cpp @@ -388,9 +388,13 @@ void WindowManager::setIcon() if (icon) { #ifdef WIN64 - SetClassLongPtr(pInfo.window, GCLP_HICON, reinterpret_cast<LONG_PTR>(icon)); + SetClassLongPtr(pInfo.window, + GCLP_HICON, + reinterpret_cast<LONG_PTR>(icon)); #else // WIN64 - SetClassLong(pInfo.window, GCL_HICON, reinterpret_cast<LONG>(icon)); + SetClassLong(pInfo.window, + GCL_HICON, + reinterpret_cast<LONG>(icon)); #endif // WIN64 } #else // WIN32 |