diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-10 19:57:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-10 19:57:03 +0000 |
commit | 5d54a1ba8bad01c4b4d22ee12ab8fe0adf9d9027 (patch) | |
tree | bad39fc5848d81da6448544a54990c3dd781f16e /plugins/PluginUpdater/src/Notifications.cpp | |
parent | ae15f46e7d599c8b96a0bc7b6440acac1108a8a4 (diff) |
attempt to simplify things a bit
git-svn-id: http://svn.miranda-ng.org/main/trunk@1868 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Notifications.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/Notifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Notifications.cpp b/plugins/PluginUpdater/src/Notifications.cpp index 7e30ad5e85..3ed7fca2b2 100644 --- a/plugins/PluginUpdater/src/Notifications.cpp +++ b/plugins/PluginUpdater/src/Notifications.cpp @@ -240,7 +240,7 @@ static void ApplyUpdates(void *param) for (int i=0; i < todo.getCount(); ++i) {
ListView_EnsureVisible(hwndList, i, FALSE);
- if ( !todo[i].enabled) {
+ if ( !todo[i].enabled || todo[i].bDeleteOnly) {
SetStringText(hwndList, i, TranslateT("Skipped"));
continue;
}
|