diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-06-28 01:57:01 +0300 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-06-28 01:57:01 +0300 |
commit | b8f633de243914aa548381d024e77ad736b91d0d (patch) | |
tree | 3c81e57b024df92c35f32d6a447f412d781e0661 /src/core/FrontEndControls.cpp | |
parent | 233792e2b872ed400955bb3da113bd82234cfa09 (diff) |
fixes
Diffstat (limited to 'src/core/FrontEndControls.cpp')
-rw-r--r-- | src/core/FrontEndControls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/FrontEndControls.cpp b/src/core/FrontEndControls.cpp index cd185b9a..68992e16 100644 --- a/src/core/FrontEndControls.cpp +++ b/src/core/FrontEndControls.cpp @@ -488,7 +488,7 @@ void CMenuMultiChoiceTriggered::SelectCurrentOptionUnderCursor(void) { CMenuMultiChoice::SelectCurrentOptionUnderCursor(); - if(m_cursor != -1 && m_triggers[m_cursor] != NULL ) + if(m_cursor != -1 && m_triggers[m_cursor] != nil ) m_triggers[m_cursor](this); } |