summaryrefslogtreecommitdiff
path: root/updater/services.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'updater/services.cpp')
-rw-r--r--updater/services.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/updater/services.cpp b/updater/services.cpp
index 063a907..49b3c91 100644
--- a/updater/services.cpp
+++ b/updater/services.cpp
@@ -216,13 +216,13 @@ void CheckForUpdatesWorker(void *param) {
if(options.use_xml_backend)
{
- if(UpdateXMLData(MC_PLUGINS)) {// prevent double error messages (in some cases)
+ if (UpdateXMLData(MC_PLUGINS)) {// prevent double error messages (in some cases)
// iterate through the registered plugins
- if(!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Scanning plugins folder"), 0);
+ if (!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Scanning plugins folder"), 0);
ScanPlugins(&fn_map, &update_list);
- if(UpdateXMLData(MC_LOCALIZATION)) {
- if(!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Scanning language packs"), 0);
+ if (UpdateXMLData(MC_LOCALIZATION)) {
+ if (!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Scanning language packs"), 0);
ScanLangpacks(&fn_map, &update_list);
}
@@ -230,7 +230,7 @@ void CheckForUpdatesWorker(void *param) {
UpdateFLIDs(update_list);
}
- if(!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Checking for updates"), 0);
+ if (!use_popup) PostMessage(hwndProgress, WMU_SETMESSAGE, (WPARAM)TranslateT("Checking for updates"), 0);
}
UpdateList update_list2(update_list);