Revision: 13966
          http://sourceforge.net/p/skim-app/code/13966
Author:   hofman
Date:     2023-12-23 17:46:48 +0000 (Sat, 23 Dec 2023)
Log Message:
-----------
add generics declarations to headers

Modified Paths:
--------------
    trunk/SKDownloadController.h
    trunk/SKMainWindowController.h

Modified: trunk/SKDownloadController.h
===================================================================
--- trunk/SKDownloadController.h        2023-12-23 17:21:58 UTC (rev 13965)
+++ trunk/SKDownloadController.h        2023-12-23 17:46:48 UTC (rev 13966)
@@ -53,8 +53,8 @@
     NSButton *removeButton;
     NSMutableArray<SKDownload *> *downloads;
     NSURLSession *session;
-    NSMapTable *downloadsForTasks;
-    NSMutableDictionary *touchBarItems;
+    NSMapTable<NSURLSessionTask *, SKDownload *> *downloadsForTasks;
+    NSMutableDictionary<NSString *, NSCustomTouchBarItem *> *touchBarItems;
 }
 
 @property (nonatomic, nullable, strong) IBOutlet SKTableView *tableView;

Modified: trunk/SKMainWindowController.h
===================================================================
--- trunk/SKMainWindowController.h      2023-12-23 17:21:58 UTC (rev 13965)
+++ trunk/SKMainWindowController.h      2023-12-23 17:46:48 UTC (rev 13966)
@@ -113,7 +113,7 @@
     NSMapTable                          *rowHeights;
     
     NSMutableArray<PDFAnnotation *>     *widgets;
-    NSMapTable                          *widgetValues;
+    NSMapTable<PDFAnnotation *, id>     *widgetValues;
     
     NSMutableArray<SKSnapshotWindowController *> *snapshots;
     NSMutableArray<SKSnapshotWindowController *> *dirtySnapshots;
@@ -167,7 +167,7 @@
     CGFloat                             thumbnailCacheSize;
     CGFloat                             snapshotCacheSize;
     
-    NSMapTable                          *undoGroupOldPropertiesPerNote;
+    NSMapTable<PDFAnnotation *, NSMutableDictionary *> 
*undoGroupOldPropertiesPerNote;
     
     PDFDocument                         *placeholderPdfDocument;
     NSArray<NSDictionary<NSString *, id> *> *placeholderWidgetProperties;

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



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to