diff options
author | dartraiden <wowemuh@gmail.com> | 2017-09-19 21:25:45 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2017-09-19 21:25:45 +0300 |
commit | e7416107918d33a721915764c019beb13418385f (patch) | |
tree | 38aa2766f8fe18b3f53dd89de89dcdd019bd6531 /plugins/AsSingleWindow | |
parent | 44eadfd2f33bf3ac4cc1c56c773f09e8cf391385 (diff) |
AsSingleWindow: decapitalization, spelling correction, cosmetic, remove garbage
Diffstat (limited to 'plugins/AsSingleWindow')
-rw-r--r-- | plugins/AsSingleWindow/docs/README.md | 3 | ||||
-rw-r--r-- | plugins/AsSingleWindow/res/optionsPage.rc | bin | 8388 -> 8384 bytes | |||
-rw-r--r-- | plugins/AsSingleWindow/src/AsSingleWindow.cpp | 2 | ||||
-rw-r--r-- | plugins/AsSingleWindow/src/WindowsManager.cpp | 4 |
4 files changed, 3 insertions, 6 deletions
diff --git a/plugins/AsSingleWindow/docs/README.md b/plugins/AsSingleWindow/docs/README.md deleted file mode 100644 index 280b4c127a..0000000000 --- a/plugins/AsSingleWindow/docs/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# AsSingleWindow - Miranda messenger plugin - -All information can be found on my blog: http://soar.name/tag/assinglewindow/ diff --git a/plugins/AsSingleWindow/res/optionsPage.rc b/plugins/AsSingleWindow/res/optionsPage.rc Binary files differindex 162fe8f496..0a0b8aadcd 100644 --- a/plugins/AsSingleWindow/res/optionsPage.rc +++ b/plugins/AsSingleWindow/res/optionsPage.rc diff --git a/plugins/AsSingleWindow/src/AsSingleWindow.cpp b/plugins/AsSingleWindow/src/AsSingleWindow.cpp index 757882f7b1..ef96b0e7f3 100644 --- a/plugins/AsSingleWindow/src/AsSingleWindow.cpp +++ b/plugins/AsSingleWindow/src/AsSingleWindow.cpp @@ -13,7 +13,7 @@ PLUGININFOEX pluginInfo = { "Makes easier windows manipulation: allows you to move, minimize and activate Miranda's windows as if it were a single window.", "Aleksey Smyrnov aka Soar", "i@soar.name", - "(c) Soar, 2010-2011", + "© Soar, 2010-2011", "http://soar.name/tag/assinglewindow/", UNICODE_AWARE, {0xF6C73B4, 0x2B2B, 0x711D, {0xFB, 0xB6, 0xBB, 0x26, 0x7D, 0xFD, 0x72, 0x08}}, // 0xF6C73B42B2B711DFBB6BB267DFD7208 diff --git a/plugins/AsSingleWindow/src/WindowsManager.cpp b/plugins/AsSingleWindow/src/WindowsManager.cpp index 750d3f60f5..ed8fcb87af 100644 --- a/plugins/AsSingleWindow/src/WindowsManager.cpp +++ b/plugins/AsSingleWindow/src/WindowsManager.cpp @@ -160,7 +160,7 @@ void windowListUpdate() bool isRemoved = false; windowsList::iterator itr = pluginVars.allWindows.begin(); while (itr != pluginVars.allWindows.end()) - // Не удаляем КЛ впринципе, нет необходимости + // Не удаляем КЛ в принципе, нет необходимости if (! IsWindow(itr->hWnd) && itr->hWnd != pluginVars.contactListHWND) { if (itr->hWnd == pluginVars.contactListHWND) @@ -324,7 +324,7 @@ void allWindowsActivation(HWND hWnd) switch (wndState) { - // Восстанавливаем все окна и выстаиваем на переднем плане + // Восстанавливаем все окна и выстраиваем на переднем плане case WINDOW_STATE_NORMAL: ShowWindow(itr->hWnd, SW_SHOWNA); ShowWindow(itr->hWnd, SW_RESTORE); |