Revision: 18415
          http://bibdesk.svn.sourceforge.net/bibdesk/?rev=18415&view=rev
Author:   hofman
Date:     2012-01-18 10:37:45 +0000 (Wed, 18 Jan 2012)
Log Message:
-----------
remove unnecessary method

Modified Paths:
--------------
    trunk/bibdesk/BDSKEditor.h
    trunk/bibdesk/BDSKEditor.m
    trunk/bibdesk/BDSKPersonController.h
    trunk/bibdesk/BDSKPersonController.m
    trunk/bibdesk/BibDocument_Actions.m

Modified: trunk/bibdesk/BDSKEditor.h
===================================================================
--- trunk/bibdesk/BDSKEditor.h  2012-01-18 07:35:11 UTC (rev 18414)
+++ trunk/bibdesk/BDSKEditor.h  2012-01-18 10:37:45 UTC (rev 18415)
@@ -139,13 +139,6 @@
 
 - (BibItem *)publication;
 
-/*!
-    @method     show
-    @abstract   Shows the window.
-    @discussion (comprehensive description)
-*/
-- (void)show;
-
 - (IBAction)chooseLocalFile:(id)sender;
 
 - (IBAction)chooseRemoteURL:(id)sender;

Modified: trunk/bibdesk/BDSKEditor.m
===================================================================
--- trunk/bibdesk/BDSKEditor.m  2012-01-18 07:35:11 UTC (rev 18414)
+++ trunk/bibdesk/BDSKEditor.m  2012-01-18 10:37:45 UTC (rev 18415)
@@ -310,10 +310,6 @@
     [super dealloc];
 }
 
-- (void)show{
-    [self showWindow:self];
-}
-
 static inline BOOL validRanges(NSArray *ranges, NSUInteger max) {
     for (NSValue *range in ranges) {
         if (NSMaxRange([range rangeValue]) > max)

Modified: trunk/bibdesk/BDSKPersonController.h
===================================================================
--- trunk/bibdesk/BDSKPersonController.h        2012-01-18 07:35:11 UTC (rev 
18414)
+++ trunk/bibdesk/BDSKPersonController.h        2012-01-18 10:37:45 UTC (rev 
18415)
@@ -83,7 +83,6 @@
 #pragma mark actions
 - (IBAction)edit:(id)sender;
 - (IBAction)dismissEditSheet:(id)sender;
-- (void)show;
 - (void)updateUI;
 - (void)updatePublicationItems;
 - (void)updateFilter;

Modified: trunk/bibdesk/BDSKPersonController.m
===================================================================
--- trunk/bibdesk/BDSKPersonController.m        2012-01-18 07:35:11 UTC (rev 
18414)
+++ trunk/bibdesk/BDSKPersonController.m        2012-01-18 10:37:45 UTC (rev 
18415)
@@ -327,10 +327,6 @@
     [editSheet orderOut:self];
 }
 
-- (void)show{
-    [self showWindow:self];
-}
-
 - (void)updateUI{
        [nameTextField setStringValue:[person name]];
        [publicationTableView reloadData];

Modified: trunk/bibdesk/BibDocument_Actions.m
===================================================================
--- trunk/bibdesk/BibDocument_Actions.m 2012-01-18 07:35:11 UTC (rev 18414)
+++ trunk/bibdesk/BibDocument_Actions.m 2012-01-18 10:37:45 UTC (rev 18415)
@@ -328,7 +328,7 @@
 
 - (BDSKEditor *)editPub:(BibItem *)pub{
     BDSKEditor *editor = [self editorForPublication:pub create:YES];
-    [editor show];
+    [editor showWindow:nil];
     return editor;
 }
 
@@ -453,7 +453,7 @@
         [self addWindowController:pc];
         [pc release];
     }
-    [pc show];
+    [pc showWindow:nil];
 }
 
 - (IBAction)emailPubCmd:(id)sender{

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to