diff options
| author | nyamatongwe <devnull@localhost> | 2001-07-04 03:17:57 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-07-04 03:17:57 +0000 |
| commit | 69e5d86c012d19806723e4d9a7b33941ee784570 (patch) | |
| tree | b2247dd4fec57381423da9720b478caa75addd15 | |
| parent | b1469863455401f2cb06f3c2901c581c5e9cdbce (diff) | |
| download | scintilla-mirror-69e5d86c012d19806723e4d9a7b33941ee784570.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)); } |
