diff options
Diffstat (limited to 'graphics/gnustep-slideshow/files')
-rw-r--r-- | graphics/gnustep-slideshow/files/patch-Controller.m | 41 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/files/patch-PreferencesController.m | 12 |
2 files changed, 0 insertions, 53 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; diff --git a/graphics/gnustep-slideshow/files/patch-PreferencesController.m b/graphics/gnustep-slideshow/files/patch-PreferencesController.m deleted file mode 100644 index cec49d8a43f7..000000000000 --- a/graphics/gnustep-slideshow/files/patch-PreferencesController.m +++ /dev/null @@ -1,12 +0,0 @@ ---- PreferencesController.m.orig 2004-12-17 10:10:22.000000000 +0100 -+++ PreferencesController.m 2010-05-23 05:22:03.000000000 +0200 -@@ -32,7 +32,9 @@ - - #include "InputView.h" - -+#include <Foundation/NSArchiver.h> - #include <Foundation/NSNotification.h> -+#include <Foundation/NSUserDefaults.h> - - #include <AppKit/NSBrowser.h> - #include <AppKit/NSBrowserCell.h> |