diff options
author | nyamatongwe <unknown> | 2001-07-04 03:17:57 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-07-04 03:17:57 +0000 |
commit | ff142a354e548e743154721898d3c22596ce0854 (patch) | |
tree | b2247dd4fec57381423da9720b478caa75addd15 | |
parent | 349bddf693a5b6101fb96ad2bbd000824dcde51d (diff) | |
download | scintilla-mirror-ff142a354e548e743154721898d3c22596ce0854.tar.gz |
Stuck :: in front of GetParent as its a Windows API.
-rw-r--r-- | win32/ScintillaWin.cxx | 6 |
1 files 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<LPARAM>(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<LPARAM>(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<LPARAM>(&scn)); } |