diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-09-30 10:39:44 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-09-30 10:39:44 +0000 |
commit | 6f7466406cf22ca0c92a34e355e661a21b63e7c6 (patch) | |
tree | b7baeadda128f31d3a2a9969563990868e8403c2 /graphics/gnustep-slideshow/files/patch-Controller.m | |
parent | textproc/translate-toolkit: update to 2.2.5 (diff) |
Remove expired ports:
2018-09-29 net/ntp-devel: Use net/ntp instead
2018-09-29 net/xrdp-devel: Use net/xrdp instead
2018-09-29 net/tigervnc-devel: Use net/tigervnc instead
2018-09-29 net/unison-devel: Use net/unison instead
2018-09-30 textproc/p5-IDNA-Punycode: Deprecated by upstream
2018-08-15 graphics/gnustep-slideshowkit: unknown license
2018-08-15 graphics/gnustep-slideshow: depends on expiring graphics/gnustep-slideshowkit
2018-09-30 security/lockdown: Renders system unbootable
2018-09-30 devel/p5-Search-Binary: Deprecated by upstream, use List::BinarySearch instead
2018-09-30 devel/p5-ExtUtils-Command: ExtUtils::Command has been re-incorporated to ExtUtils-MakeMaker since 7.06, use devel/ExtUtils-MakeMaker instead
2018-09-30 editors/yui: Unmaintained upstream
2018-09-29 x11/tint-devel: Use x11/tint instead
Notes
Notes:
svn path=/head/; revision=480949
Diffstat (limited to 'graphics/gnustep-slideshow/files/patch-Controller.m')
-rw-r--r-- | graphics/gnustep-slideshow/files/patch-Controller.m | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/graphics/gnustep-slideshow/files/patch-Controller.m b/graphics/gnustep-slideshow/files/patch-Controller.m deleted file mode 100644 index 5bb9d7359b90..000000000000 --- a/graphics/gnustep-slideshow/files/patch-Controller.m +++ /dev/null @@ -1,41 +0,0 @@ ---- Controller.m.orig 2013-08-20 15:46:28.000000000 +0000 -+++ Controller.m 2013-08-20 15:46:48.000000000 +0000 -@@ -1021,32 +1021,32 @@ - { - SEL action = [menuItem action]; - -- if ( sel_eq(action,@selector(removeImages:)) ) -+ if ( sel_isEqual(action,@selector(removeImages:)) ) - { - if (( [_backend count] == 0 ) || ( ! [browser selectedCells] ) ) - return NO; - } -- if ( sel_eq(action,@selector(showNextImage:)) ) -+ if ( sel_isEqual(action,@selector(showNextImage:)) ) - { - if ( ( ( _current + 1 ) == [_backend count] ) || ( [_backend count] == 0 ) ) - return NO; - } -- else if ( sel_eq(action,@selector(showPreviousImage:)) ) -+ else if ( sel_isEqual(action,@selector(showPreviousImage:)) ) - { - if ( [_backend count] == 0 ) - return NO; - } -- else if ( sel_eq(action,@selector(fullscreenAction:)) ) -+ else if ( sel_isEqual(action,@selector(fullscreenAction:)) ) - { - if ( [_backend count] == 0 ) - return NO; - } -- else if ( sel_eq(action,@selector(addMarkAction:)) ) -+ else if ( sel_isEqual(action,@selector(addMarkAction:)) ) - { - if ( ( [self showState] == ShowOnlyMarked ) || ([_backend count] == 0 ) ) - return NO; - } -- else if ( sel_eq(action,@selector(showMarkAction:)) ) -+ else if ( sel_isEqual(action,@selector(showMarkAction:)) ) - { - if ( [_backend count] == 0 ) - return NO; |