1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Pushed down some result refresh calls to the core code.

This commit is contained in:
Virgil Dupras
2010-02-11 18:47:45 +01:00
parent 42559f13d8
commit 46836cc805
4 changed files with 17 additions and 7 deletions

View File

@@ -10,8 +10,6 @@ http://www.hardcoded.net/licenses/hs_license
/* ResultsChangedNotification happens on major changes, which requires a complete reload of the data*/
#define ResultsChangedNotification @"ResultsChangedNotification"
/* ResultsChangedNotification happens on minor changes, which requires buffer flush*/
#define ResultsUpdatedNotification @"ResultsUpdatedNotification"
#define ResultsMarkingChangedNotification @"ResultsMarkingChangedNotification"
#define RegistrationRequired @"RegistrationRequired"
#define JobStarted @"JobStarted"

View File

@@ -509,13 +509,11 @@ http://www.hardcoded.net/licenses/hs_license
- (void)resultsChanged:(NSNotification *)aNotification
{
[self reloadMatches];
[self refreshStats];
}
- (void)resultsMarkingChanged:(NSNotification *)aNotification
{
[self reloadMatches];
[self refreshStats];
}