diff options
Diffstat (limited to 'protocols/JabberG/ui_utils.cpp')
-rw-r--r-- | protocols/JabberG/ui_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/ui_utils.cpp b/protocols/JabberG/ui_utils.cpp index b12e413c81..4386a02a53 100644 --- a/protocols/JabberG/ui_utils.cpp +++ b/protocols/JabberG/ui_utils.cpp @@ -575,12 +575,12 @@ void CCtrlMButton::OnInit() void CCtrlMButton::MakeFlat()
{
- SendMessage(m_hwnd, BUTTONSETASFLATBTN, 0, 0);
+ SendMessage(m_hwnd, BUTTONSETASFLATBTN, TRUE, 0);
}
void CCtrlMButton::MakePush()
{
- SendMessage(m_hwnd, BUTTONSETASPUSHBTN, 0, 0);
+ SendMessage(m_hwnd, BUTTONSETASPUSHBTN, TRUE, 0);
}
/////////////////////////////////////////////////////////////////////////////////////////
|