diff options
author | sqlprodev <sqlprodev@northofthree.com> | 2011-04-14 21:58:04 +0000 |
---|---|---|
committer | sqlprodev <sqlprodev@northofthree.com> | 2011-04-14 21:58:04 +0000 |
commit | c92056ec0042a7a3de9163ce08704236f5e1c331 (patch) | |
tree | 65c5e7b2d81d58967597615f7ed0bb10e9c8aba2 /Source/SPDatabaseDocument.m | |
parent | 8c2e3126426c0c4c9e5bc2392879a850d3373641 (diff) | |
download | sequelpro-c92056ec0042a7a3de9163ce08704236f5e1c331.tar.gz sequelpro-c92056ec0042a7a3de9163ce08704236f5e1c331.tar.bz2 sequelpro-c92056ec0042a7a3de9163ce08704236f5e1c331.zip |
Fixes source text encoding problems accidentally introduced in r3273
Diffstat (limited to 'Source/SPDatabaseDocument.m')
-rw-r--r-- | Source/SPDatabaseDocument.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index 7bb28a97..8c05daa0 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -5224,7 +5224,7 @@ { [runningActivitiesArray addObject:commandDict]; #ifndef SP_REFACTOR - [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:self]; + [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:nil]; #else [[NSNotificationCenter defaultCenter] sequelProPostNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:self]; #endif @@ -5260,7 +5260,7 @@ } #ifndef SP_REFACTOR - [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:self]; + [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:nil]; #else [[NSNotificationCenter defaultCenter] sequelProPostNotificationOnMainThreadWithName:SPActivitiesUpdateNotification object:self]; #endif |