diff options
Diffstat (limited to 'plugins/IgnoreState/src/main.cpp')
-rw-r--r-- | plugins/IgnoreState/src/main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/IgnoreState/src/main.cpp b/plugins/IgnoreState/src/main.cpp index 15deb3e489..bff3520324 100644 --- a/plugins/IgnoreState/src/main.cpp +++ b/plugins/IgnoreState/src/main.cpp @@ -141,11 +141,8 @@ int onModulesLoaded(WPARAM wParam,LPARAM lParam) hExtraIcon = ExtraIcon_Register("ignore", LPGEN("Ignore State"), "ignore_full");
// Set initial value for all contacts
- HANDLE hContact = db_find_first();
- while (hContact != NULL) {
+ for (HANDLE hContact = db_find_first(); hContact; hContact = db_find_next(hContact))
applyExtraImage(hContact);
- hContact = db_find_next(hContact);
- }
return 0;
}
|