Revision: 29305
          http://sourceforge.net/p/bibdesk/svn/29305
Author:   hofman
Date:     2025-07-19 22:14:29 +0000 (Sat, 19 Jul 2025)
Log Message:
-----------
define options as it shifts

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

Modified: trunk/bibdesk/BibItem.h
===================================================================
--- trunk/bibdesk/BibItem.h     2025-07-19 17:53:56 UTC (rev 29304)
+++ trunk/bibdesk/BibItem.h     2025-07-19 22:14:29 UTC (rev 29305)
@@ -70,11 +70,11 @@
 };
 
 typedef NS_OPTIONS(NSUInteger, BDSKBibTeXOption) {
-    BDSKBibTeXOptionTeXify = 1,
-    BDSKBibTeXOptionDropLinkedURLs = 2,
-    BDSKBibTeXOptionDropNonStandard = 4,
-    BDSKBibTeXOptionDropInternal = 6,
-    BDSKBibTeXOptionRedirectRelativeFiles = 8
+    BDSKBibTeXOptionTeXify = 1 << 0,
+    BDSKBibTeXOptionDropLinkedURLs = 1 << 1,
+    BDSKBibTeXOptionDropNonStandard = 1 << 2,
+    BDSKBibTeXOptionDropInternal = BDSKBibTeXOptionDropLinkedURLs | 
BDSKBibTeXOptionDropNonStandard,
+    BDSKBibTeXOptionRedirectRelativeFiles = 1 << 3
 };
 
 typedef NS_ENUM(NSInteger, BDSKFieldAction) {

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