diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-05 20:20:14 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-05 20:20:14 +0300 |
commit | 7e71db53bdd51a213e9262723d52957a0961793d (patch) | |
tree | e23f78dd8739580c739c45d6e1990f90e5d8c040 /plugins/Scriver/src/input.cpp | |
parent | 3c78e3b9659ea8903d46cdcc0d95288e65f50e0b (diff) |
Scriver -> core splitters
also:
- structure of Scriver SRMM classes redesigned to avoid problems with MS compilers;
- unused cursors removed;
- now splitter position is being saved & restored;
Diffstat (limited to 'plugins/Scriver/src/input.cpp')
-rw-r--r-- | plugins/Scriver/src/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/input.cpp b/plugins/Scriver/src/input.cpp index 8fe400cdd9..9f5881fa6d 100644 --- a/plugins/Scriver/src/input.cpp +++ b/plugins/Scriver/src/input.cpp @@ -115,7 +115,7 @@ void InputAreaContextMenu(HWND hwnd, WPARAM, LPARAM lParam, MCONTACT hContact) DestroyMenu(hMenu);
}
-int InputAreaShortcuts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, CommonWindowData *windowData)
+int InputAreaShortcuts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, CScriverWindow *windowData)
{
BOOL isShift = GetKeyState(VK_SHIFT) & 0x8000;
BOOL isAlt = GetKeyState(VK_MENU) & 0x8000;
|