From 4b4feafa3376b520abb0a1fe9eb80787977723ab Mon Sep 17 00:00:00 2001 From: gcasa Date: Tue, 10 Apr 2007 02:42:47 +0000 Subject: [PATCH] * Source/NSAnimation.m: Removed static INLINE declaration from nsanimation_progressMarkSorter function so that it will compile properly on versions of gcc prior to 4.1.2. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24972 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 17 ++++++++++++----- Source/NSAnimation.m | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3426d5dc7..769e0add9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,20 +1,27 @@ +2007-04-09 21:20-EDT Gregory John Casamento + + * Source/NSAnimation.m: Removed static INLINE declaration from + nsanimation_progressMarkSorter function so that it will compile + properly on versions of gcc prior to 4.1.2. + 2007-04-10 Fred Kiefer * Source/NSClipView.m (-setBoundsOrigin:): Use NSView method scrollRect:by:. * Source/NSPrintOperation.m (NSView - -_displayPageInRect:atPlacement:withInfo:): Release the temporary matrixes. + -_displayPageInRect:atPlacement:withInfo:): Release the temporary + matrixes. * Source/GSEPSPrintOperation.m (_print): Call endPage on the view. 2007-04-05 Xavier Glattard * Headers/AppKit/NSAnimation.h - * Source/NSAnimation.m + * Source/NSAnimation.m * Headers/Additions/GNUstepGUI/GSAnimator.h * Source/GSAnimator.m - Implementation of NSAnimation and NSViewAnimation classes : - - only NSAnimationNonBlocking mode is implemented - - runLoopModesForAnimating is not used + Implementation of NSAnimation and NSViewAnimation classes : + - only NSAnimationNonBlocking mode is implemented + - runLoopModesForAnimating is not used GSAnimator class is in alpha stage : interface may be changed See gnustep-examples/GSTest for demos. diff --git a/Source/NSAnimation.m b/Source/NSAnimation.m index c902cd212..efd884651 100644 --- a/Source/NSAnimation.m +++ b/Source/NSAnimation.m @@ -83,7 +83,7 @@ _NSAnimationCurveDesc *_gs_animationCurveDesc - (NSAnimationProgress) _gs_curveShift; @end -static INLINE NSComparisonResult +NSComparisonResult nsanimation_progressMarkSorter( NSAnimationProgress first,NSAnimationProgress second) { float diff = first - second;