From: Michael J. Rubinsky Date: Sun, 18 Jan 2009 19:38:48 +0000 (-0500) Subject: Fix method name - we don't attempt to set the new gallery's description X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=25c90a14475a51932ffcfa1c282057fcd9a11353;p=horde.git Fix method name - we don't attempt to set the new gallery's description --- diff --git a/iPhoto2Ansel/AnselExportController.m b/iPhoto2Ansel/AnselExportController.m index 73c72fd71..4edb8ac6a 100644 --- a/iPhoto2Ansel/AnselExportController.m +++ b/iPhoto2Ansel/AnselExportController.m @@ -102,8 +102,7 @@ NSString * const TURAnselServerPasswordKey = @"password"; // It *looks* like index 0 is the first selected album? albumName = [mExportMgr albumNameAtIndex: 0]; newGalleryController = [[TURAnselGalleryPanelController alloc] initWithController: anselController - withGalleryName: albumName - withGalleryDescription: [mExportMgr albumCommentsAtIndex:0]]; + withGalleryName: albumName]; [newGalleryController setDelegate: self]; [newGalleryController showSheetForWindow: [self window]]; }