diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-07-20 13:44:24 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-07-20 13:44:24 +0000 |
commit | 5161dd2a33e0e2147a40865a42461837aee5d7ed (patch) | |
tree | 639179332e9ca9201f6fb2fc82a8d2699591c41e /plugins/PluginUpdater/src/Events.cpp | |
parent | 2d3b85b61fbd644508fac957e194a1618830191b (diff) |
Plugin Updater: Fixed various issues
- Checking after resume from hibernation finally works
- Checking after having opened update dialog for too long works
- After closing update dialog without updating and checking for updates again now correctly checks for new updates (and not show old unusable window)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9888 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Events.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/Events.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/PluginUpdater/src/Events.cpp b/plugins/PluginUpdater/src/Events.cpp index e892092094..816f92c603 100644 --- a/plugins/PluginUpdater/src/Events.cpp +++ b/plugins/PluginUpdater/src/Events.cpp @@ -49,10 +49,10 @@ int ModulesLoaded(WPARAM, LPARAM) EmptyFolder(0, TRUE); // silently
if (AllowUpdateOnStartup())
- DoCheck(opts.bUpdateOnStartup);
+ DoCheck();
Timer = CreateWaitableTimer(NULL, FALSE, NULL);
- InitTimer();
+ mir_forkthread(InitTimer, (void*)0);
return 0;
}
|