Revision: 30017
          http://sourceforge.net/p/bibdesk/svn/30017
Author:   hofman
Date:     2026-02-19 10:00:47 +0000 (Thu, 19 Feb 2026)
Log Message:
-----------
reorder enum values

Modified Paths:
--------------
    trunk/bibdesk/BDSKFiler.h

Modified: trunk/bibdesk/BDSKFiler.h
===================================================================
--- trunk/bibdesk/BDSKFiler.h   2026-02-18 17:19:35 UTC (rev 30016)
+++ trunk/bibdesk/BDSKFiler.h   2026-02-19 10:00:47 UTC (rev 30017)
@@ -64,9 +64,9 @@
 };
 
 typedef NS_OPTIONS(NSUInteger, BDSKFilerOptions) {
-    BDSKAutoFileOptionUndo = 1 << 0,
-    BDSKAutoFileOptionGenerate = 1 << 1,
-    BDSKAutoFileOptionCheckComplete = 1 << 2,
+    BDSKAutoFileOptionGenerate = 1 << 0,
+    BDSKAutoFileOptionCheckComplete = 1 << 1,
+    BDSKAutoFileOptionUndo = 1 << 2,
     BDSKAutoFileOptionForce = 1 << 3
 };
 
@@ -121,9 +121,9 @@
 It is undoable, but only moves that were succesfull are registered for undo. 
 It can handle aliases and symlinks, also when they occur in the middle of the 
paths. 
 Aliases and symlinks are moved unresolved.
-BDSKAutoFileOptionUndo is passed when this is called by undo.
 BDSKAutoFileOptionGenerate should be used for initial autofile moves, the new 
path will be generated.
 BDSKAutoFileOptionCheckComplete indicates that for initial moves a check will 
be done whether all required fields are set.
+ BDSKAutoFileOptionUndo is passed when this is called by undo.
 BDSKAutoFileOptionForce forces moves, even if there may be problems moving the 
file.
 */
 - (void)movePapers:(NSArray<NSDictionary<NSString *, id> *> *)paperInfos 
forField:(NSString *)field fromDocument:(BibDocument *)doc 
options:(BDSKFilerOptions)options actionName:(nullable NSString *)actionName;

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