diff options
Diffstat (limited to 'plugins/AutoShutdown/src/main.cpp')
-rw-r--r-- | plugins/AutoShutdown/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AutoShutdown/src/main.cpp b/plugins/AutoShutdown/src/main.cpp index 636fc3e0fd..5341f7d7d0 100644 --- a/plugins/AutoShutdown/src/main.cpp +++ b/plugins/AutoShutdown/src/main.cpp @@ -74,9 +74,9 @@ extern "C" __declspec(dllexport) int Load(void) INITCOMMONCONTROLSEX icc;
icc.dwSize=sizeof(icc);
icc.dwICC=ICC_DATE_CLASSES|ICC_UPDOWN_CLASS|ICC_PROGRESS_CLASS;
- if(!InitCommonControlsEx(&icc)) return 1;
+ if (!InitCommonControlsEx(&icc)) return 1;
- if(InitFrame()) return 1; /* before icons */
+ if (InitFrame()) return 1; /* before icons */
/* shared */
Icon_Register(hInst, "Automatic Shutdown", iconList, SIZEOF(iconList));
|