Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
everzet committed Mar 1, 2010
1 parent fad6c57 commit dfa4820
Show file tree
Hide file tree
Showing 5 changed files with 344 additions and 638 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Expand Up @@ -3,4 +3,4 @@
url = git://github.com/everzet/EZMilk.git
[submodule "Lib/Vendor/SQLitePersistentObjects"]
path = Lib/Vendor/SQLitePersistentObjects
url = git://github.com/siannopollo/sqlitepersistentobjects.git
url = git://github.com/everzet/sqlitepersistentobjects.git
5 changes: 3 additions & 2 deletions Controller/AppController.m
Expand Up @@ -98,8 +98,8 @@ - (void)dealloc
- (void)reloadLists
{
int selectedList = [listView indexOfSelectedItem];
NSMutableArray* listArray = [self mutableArrayValueForKey:@"lists"];

NSMutableArray* listArray = [self mutableArrayValueForKey:@"lists"];
[listArray removeAllObjects];
[listArray addObjectsFromArray:[TaskList allObjects]];

Expand All @@ -113,6 +113,7 @@ - (void)reloadLists
TaskList* list = [[TaskList alloc] init];
list.name = @"Inbox";
[list save];
[list release];
[self reloadLists];
}
}
Expand Down Expand Up @@ -268,7 +269,7 @@ - (void)saveTaskFromEntry:(id)sender

- (void)runSyncLoop:(id)sender
{
while (true)
while (false)
{
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
[rtmService setToken:[prefHolder rtmToken]];
Expand Down

0 comments on commit dfa4820

Please sign in to comment.