From 69e5d86c012d19806723e4d9a7b33941ee784570 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 4 Jul 2001 03:17:57 +0000 Subject: Stuck :: in front of GetParent as its a Windows API. --- win32/ScintillaWin.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 11612fb1c..85c795ac5 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -804,13 +804,13 @@ bool ScintillaWin::ModifyScrollBars(int nMax, int nPage) { } void ScintillaWin::NotifyChange() { - ::SendMessage(GetParent(wMain.GetID()), WM_COMMAND, + ::SendMessage(::GetParent(wMain.GetID()), WM_COMMAND, MAKELONG(wMain.GetDlgCtrlID(), SCEN_CHANGE), reinterpret_cast(wMain.GetID())); } void ScintillaWin::NotifyFocus(bool focus) { - ::SendMessage(GetParent(wMain.GetID()), WM_COMMAND, + ::SendMessage(::GetParent(wMain.GetID()), WM_COMMAND, MAKELONG(wMain.GetDlgCtrlID(), focus ? SCEN_SETFOCUS : SCEN_KILLFOCUS), reinterpret_cast(wMain.GetID())); } @@ -818,7 +818,7 @@ void ScintillaWin::NotifyFocus(bool focus) { void ScintillaWin::NotifyParent(SCNotification scn) { scn.nmhdr.hwndFrom = wMain.GetID(); scn.nmhdr.idFrom = ctrlID; - ::SendMessage(GetParent(wMain.GetID()), WM_NOTIFY, + ::SendMessage(::GetParent(wMain.GetID()), WM_NOTIFY, wMain.GetDlgCtrlID(), reinterpret_cast(&scn)); } -- cgit v1.2.3