diff options
author | George Hazan <george.hazan@gmail.com> | 2016-03-09 10:40:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-03-09 10:40:37 +0000 |
commit | baec52c6995b90287a87c399ae97e156620381f1 (patch) | |
tree | 043311272ab5619c804ab04821e418c4a86dff06 /plugins/SmileyAdd | |
parent | c1b1eff82c3101a6bf00550ff27d4ae6823bbdbd (diff) |
fix for StdMsg & Smilies
git-svn-id: http://svn.miranda-ng.org/main/trunk@16450 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd')
-rw-r--r-- | plugins/SmileyAdd/src/dlgboxsubclass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/dlgboxsubclass.cpp b/plugins/SmileyAdd/src/dlgboxsubclass.cpp index 255c6ed05f..7f8e13779a 100644 --- a/plugins/SmileyAdd/src/dlgboxsubclass.cpp +++ b/plugins/SmileyAdd/src/dlgboxsubclass.cpp @@ -267,8 +267,8 @@ static int MsgDlgHook(WPARAM, LPARAM lParam) MsgWndData *msgwnd = new MsgWndData();
msgwnd->hwnd = wndEvtData->hwndWindow;
msgwnd->hContact = wndEvtData->hContact;
- msgwnd->REdit = wndEvtData->hwndInput;
- msgwnd->MEdit = wndEvtData->hwndLog;
+ msgwnd->REdit = wndEvtData->hwndLog;
+ msgwnd->MEdit = wndEvtData->hwndInput;
msgwnd->LButton = GetDlgItem(wndEvtData->hwndWindow, MI_IDC_ADD);
// Get the protocol for this contact to display correct smileys.
|