diff options
Diffstat (limited to 'plugins/MirFox/src')
-rw-r--r-- | plugins/MirFox/src/MirandaOptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirFox/src/MirandaOptions.cpp b/plugins/MirFox/src/MirandaOptions.cpp index 7e709e65f7..ea3ba9e8ec 100644 --- a/plugins/MirFox/src/MirandaOptions.cpp +++ b/plugins/MirFox/src/MirandaOptions.cpp @@ -622,7 +622,7 @@ INT_PTR CALLBACK DlgProcOpts_Tab3(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM ListView_GetItem(hList, &lvItem);
char * accountId ((char *)lvItem.lParam);
- BYTE accountStateB = (BYTE)ListView_GetCheckState(hList, lvItem.iItem);
+ uint8_t accountStateB = (uint8_t)ListView_GetCheckState(hList, lvItem.iItem);
MFENUM_MIRANDAACCOUNT_STATE accountState;
if (accountStateB == 0){
|