summaryrefslogtreecommitdiffstats
path: root/src/windows/identity/ui/cfg_plugins_wnd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/identity/ui/cfg_plugins_wnd.c')
-rw-r--r--src/windows/identity/ui/cfg_plugins_wnd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/windows/identity/ui/cfg_plugins_wnd.c b/src/windows/identity/ui/cfg_plugins_wnd.c
index f0789e8d00..dc26f097b9 100644
--- a/src/windows/identity/ui/cfg_plugins_wnd.c
+++ b/src/windows/identity/ui/cfg_plugins_wnd.c
@@ -61,7 +61,7 @@ void update_dialog_fields(HWND hwnd,
StringCbPrintf(buf, sizeof(buf), fmt, info->plugin.reg.name);
SetDlgItemText(hwnd, IDC_CFG_DESC, buf);
}
-
+
switch(info->plugin.state) {
case KMM_PLUGIN_STATE_FAIL_INIT:
resid = IDS_PISTATE_FAILINIT;
@@ -369,7 +369,7 @@ khm_cfg_plugins_proc(HWND hwnd,
LPNMHDR lpnm;
HWND hw;
- d = (plugin_dlg_data *) (LONG_PTR)
+ d = (plugin_dlg_data *) (LONG_PTR)
GetWindowLongPtr(hwnd, DWLP_USER);
if (d == NULL)
return FALSE;
@@ -393,7 +393,7 @@ khm_cfg_plugins_proc(HWND hwnd,
EnableWindow(GetDlgItem(hwnd, IDC_CFG_ENABLE), FALSE);
EnableWindow(GetDlgItem(hwnd, IDC_CFG_DISABLE), FALSE);
EnableWindow(GetDlgItem(hwnd, IDC_CFG_UNREGISTER), FALSE);
- SendDlgItemMessage(hwnd, IDC_CFG_DEPS,
+ SendDlgItemMessage(hwnd, IDC_CFG_DEPS,
LB_RESETCONTENT, 0, 0);
SendDlgItemMessage(hwnd, IDC_CFG_ICON, STM_SETICON,
(WPARAM) d->plugin_ico, 0);
@@ -615,7 +615,7 @@ khm_cfg_plugins_proc(HWND hwnd,
case MAKEWPARAM(IDC_CFG_REGISTER, BN_CLICKED):
{
-
+
}
break;
}
@@ -626,7 +626,7 @@ khm_cfg_plugins_proc(HWND hwnd,
{
khm_size i;
- d = (plugin_dlg_data *) (LONG_PTR)
+ d = (plugin_dlg_data *) (LONG_PTR)
GetWindowLongPtr(hwnd, DWLP_USER);
#ifdef DEBUG
assert(d);