Revision: 22590
          http://sourceforge.net/p/bibdesk/svn/22590
Author:   hofman
Date:     2018-09-13 12:04:53 +0000 (Thu, 13 Sep 2018)
Log Message:
-----------
declare enum type

Modified Paths:
--------------
    trunk/bibdesk/BibItem.h
    trunk/bibdesk/BibItem.m

Modified: trunk/bibdesk/BibItem.h
===================================================================
--- trunk/bibdesk/BibItem.h     2018-09-13 12:01:57 UTC (rev 22589)
+++ trunk/bibdesk/BibItem.h     2018-09-13 12:04:53 UTC (rev 22590)
@@ -832,7 +832,7 @@
 - (BOOL)isContainedInGroupNamed:(id)group forField:(NSString *)field;
 - (BDSKFieldAction)addToGroup:(BDSKCategoryGroup *)group 
handleInherited:(BDSKFieldAction)operation;
 - (BDSKFieldAction)removeFromGroup:(BDSKCategoryGroup *)group 
handleInherited:(BDSKFieldAction)operation;
-- (NSInteger)replaceGroup:(BDSKCategoryGroup *)group 
withGroup:(BDSKCategoryGroup *)newGroup handleInherited:(NSInteger)operation;
+- (BDSKFieldAction)replaceGroup:(BDSKCategoryGroup *)group 
withGroup:(BDSKCategoryGroup *)newGroup 
handleInherited:(BDSKFieldAction)operation;
 - (void)invalidateGroupNames;
 
 - (BOOL)isImported;

Modified: trunk/bibdesk/BibItem.m
===================================================================
--- trunk/bibdesk/BibItem.m     2018-09-13 12:01:57 UTC (rev 22589)
+++ trunk/bibdesk/BibItem.m     2018-09-13 12:04:53 UTC (rev 22590)
@@ -3271,7 +3271,7 @@
        return operation;
 }
 
-- (NSInteger)replaceGroup:(BDSKCategoryGroup *)group 
withGroup:(BDSKCategoryGroup *)newGroup handleInherited:(NSInteger)operation{
+- (BDSKFieldAction)replaceGroup:(BDSKCategoryGroup *)group 
withGroup:(BDSKCategoryGroup *)newGroup 
handleInherited:(BDSKFieldAction)operation{
        BDSKASSERT([owner isDocument]);
     id groupName = [group name];
     id newGroupName = [newGroup name];
@@ -3290,7 +3290,7 @@
        }
        
        if(isInherited){
-               if(operation ==  BDSKFieldActionAsk || operation == 
BDSKFieldActionIgnore)
+               if(operation == BDSKFieldActionAsk || operation == 
BDSKFieldActionIgnore)
                        return operation;
        }
        

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



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to