diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-09 17:40:10 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-09 17:40:10 +0300 |
commit | 688953e95536edd77988ab2f46027697b9b3f2e6 (patch) | |
tree | 46bcab44a66f4eb989f35829d67eb3b8dcaff93d /plugins/ShellExt/src | |
parent | 8553c260ff9939c9d78bbaf2634bb26a20342a3a (diff) |
more fixes
Diffstat (limited to 'plugins/ShellExt/src')
-rw-r--r-- | plugins/ShellExt/src/shlcom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ShellExt/src/shlcom.cpp b/plugins/ShellExt/src/shlcom.cpp index c27ff9cfdb..8e8314ddd4 100644 --- a/plugins/ShellExt/src/shlcom.cpp +++ b/plugins/ShellExt/src/shlcom.cpp @@ -236,7 +236,7 @@ void ipcGetSkinIcons(THeaderIPC * ipch) bool ipcGetSortedContacts(THeaderIPC * ipch, int* pSlot, bool bGroupMode)
{
// hide offliners?
- bool bHideOffline = Clist::HideOffline;
+ bool bHideOffline = Clist::bHideOffline;
// do they wanna hide the offline people anyway?
if (g_plugin.getByte(SHLExt_ShowNoOffline, 0) == 1)
// hide offline people
@@ -409,7 +409,7 @@ void __stdcall ipcService(ULONG_PTR) // if the group mode is on, check if they want the CList setting
bool bGroupMode = (BST_CHECKED == g_plugin.getByte(SHLExt_UseGroups, BST_UNCHECKED));
if (bGroupMode && BST_CHECKED == g_plugin.getByte(SHLExt_UseCListSetting, BST_UNCHECKED))
- bGroupMode = Clist::UseGroups;
+ bGroupMode = Clist::bUseGroups;
TSlotIPC * pct = nullptr;
int iSlot = 0;
|