diff options
Diffstat (limited to 'src/modules/button')
-rw-r--r-- | src/modules/button/button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/button/button.cpp b/src/modules/button/button.cpp index 1c6bd79980..5bbc752d5d 100644 --- a/src/modules/button/button.cpp +++ b/src/modules/button/button.cpp @@ -476,7 +476,7 @@ static LRESULT CALLBACK MButtonWndProc(HWND hwndDlg, UINT msg, WPARAM wParam, L TTooltips *ptt = ( TTooltips* )mir_alloc( sizeof(TTooltips) );
ptt->ThreadId = tt.ThreadId;
ptt->hwnd = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, _T(""), TTS_ALWAYSTIP, 0, 0, 0, 0, NULL, NULL, hMirandaInst, NULL);
- lToolTips.insert(ptt, idx);
+ lToolTips.insert(ptt);
bct->hwndToolTips = ptt->hwnd;
}
LeaveCriticalSection(&csTips);
|