wrapping, spacing
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 26 Nov 2008 01:31:44 +0000 (20:31 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 26 Nov 2008 01:31:44 +0000 (20:31 -0500)
iPhoto2Ansel/AnselExportController.m
iPhoto2Ansel/TURXMLConnection.m

index 21ffff5..7442118 100644 (file)
@@ -70,7 +70,9 @@
     [galleryCombo setDelegate:self];
     [spinner startAnimation:self];
     // Detach to a new thread and do the actual login/retrieval of gallery list
-    [NSApplication detachDrawingThread: @selector(connect) toTarget: self withObject: nil];
+    [NSApplication detachDrawingThread: @selector(connect)
+                              toTarget: self 
+                            withObject: nil];
     [p release];
     [pool release];
 }
     // Make sure we're not doing this for nothing
     if ([anselController state] == TURAnselStateConnected &&
         [[newGalleryName stringValue] length] > 0) {
-        [NSApplication detachDrawingThread:@selector(newGallery:)
-                                  toTarget:self 
-                                withObject:[newGalleryName stringValue]];
+        [NSApplication detachDrawingThread: @selector(newGallery:)
+                                  toTarget: self 
+                                withObject: [newGalleryName stringValue]];
     }
 }
 
 #pragma mark ExportPluginProtocol
-
 // Initialize
 - (id)initWithExportImageObj:(id <ExportImageProtocol>)obj
 {
index cf39814..36877f3 100644 (file)
 static NSString *ERR_DOMAIN = @"com.theupstairsroom.XMLConnection";
 
 - (TURXMLConnection *)initWithXMLRPCRequest: (XMLRPCRequest *)request 
-                            withCredentials:(NSDictionary *)credentials
+                            withCredentials: (NSDictionary *)credentials
 {
     username = [[credentials objectForKey:@"username"] retain];
     password = [[credentials objectForKey:@"password"] retain];
     running = YES;
-    connection = [[XMLRPCConnection alloc] initWithXMLRPCRequest:request
-                                                        delegate:self];
+    connection = [[XMLRPCConnection alloc] initWithXMLRPCRequest: request
+                                                        delegate: self];
     return self;
 }