diff options
author | René Schümann <white06tiger@gmail.com> | 2014-06-13 19:17:55 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-06-13 19:17:55 +0000 |
commit | bf351fabb738c7054a7a0d82640d7c88751b512f (patch) | |
tree | 44aa29f2f6285d0a51462e276efa6bf53c9814ae /plugins | |
parent | f41c498aebfdfe3dfcabbda50363ea9278fe586b (diff) |
! finally fixed bug that I've tried to fix in r9451 and r9452 but didn't :P
Introduced in r6788 ... variable reordering of doom!
git-svn-id: http://svn.miranda-ng.org/main/trunk@9463 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UMainForm.cpp | 2 | ||||
-rw-r--r-- | plugins/SendScreenshotPlus/src/UMainForm.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/UMainForm.cpp b/plugins/SendScreenshotPlus/src/UMainForm.cpp index 1244d1426d..6abf446e60 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.cpp +++ b/plugins/SendScreenshotPlus/src/UMainForm.cpp @@ -676,8 +676,8 @@ TfrmMain::TfrmMain() { /* m_AlphaColor */ m_cSend = NULL; - m_MonitorCount = MonitorInfoEnum(m_Monitors, m_VirtualScreen); m_Monitors = NULL; + m_MonitorCount = MonitorInfoEnum(m_Monitors, m_VirtualScreen); /* m_opt_XXX */ LoadOptions(); m_bCapture = false; /* m_hwndTab,m_hwndTabPage */ diff --git a/plugins/SendScreenshotPlus/src/UMainForm.h b/plugins/SendScreenshotPlus/src/UMainForm.h index 33f790a6d9..c5906b2f1d 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.h +++ b/plugins/SendScreenshotPlus/src/UMainForm.h @@ -108,8 +108,8 @@ class TfrmMain{ static void edtSizeUpdate(RECT rect, HWND hTarget, UINT Ctrl); protected: - size_t m_MonitorCount; MONITORINFOEX* m_Monitors; + size_t m_MonitorCount; RECT m_VirtualScreen; BYTE m_opt_chkOpenAgain; //TCheckBox *chkOpenAgain; |