diff options
Diffstat (limited to 'plugins/Clist_modern/src')
-rw-r--r-- | plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp index a4acecf17e..599a4f9d88 100644 --- a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp +++ b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp @@ -1706,7 +1706,7 @@ static int CLUIFramesLoadMainMenu() return -1;
if (_hmiRoot != HGENMENU_ROOT) {
- CallService(MS_CLIST_REMOVEMAINMENUITEM, (WPARAM)_hmiRoot, 0);
+ CallService(MO_REMOVEMENUITEM, (WPARAM)_hmiRoot, 0);
_hmiRoot = HGENMENU_ROOT;
}
@@ -3870,7 +3870,7 @@ static INT_PTR UnloadMainMenu() {
CLUIFrameOnModulesUnload(0, 0);
if (_hmiRoot != HGENMENU_ROOT) {
- CallService(MS_CLIST_REMOVEMAINMENUITEM, (WPARAM)_hmiRoot, 0);
+ CallService(MO_REMOVEMENUITEM, (WPARAM)_hmiRoot, 0);
_hmiRoot = HGENMENU_ROOT;
}
|