mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 16:00:37 +00:00
Lots of small tweaks to make -gui compile without warnings with clang.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30119 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3529a217e2
commit
3da9ac45b7
13 changed files with 38 additions and 31 deletions
|
@ -1300,9 +1300,13 @@ nsanimation_progressMarkSorter(NSAnimationProgress first, NSAnimationProgress se
|
|||
[self setTargetFrame: r];
|
||||
|
||||
if (_effect == NSViewAnimationFadeOutEffect)
|
||||
/* subclassResponsibility */;
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
}
|
||||
if (_effect == NSViewAnimationFadeInEffect)
|
||||
/* subclassResponsibility */;
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1334,9 +1338,9 @@ nsanimation_progressMarkSorter(NSAnimationProgress first, NSAnimationProgress se
|
|||
- (void) setCurrentProgress: (float)progress
|
||||
{
|
||||
[super setCurrentProgress: progress];
|
||||
if (_effect == NSViewAnimationFadeOutEffect)
|
||||
if (_effect == NSViewAnimationFadeOutEffect) {}
|
||||
/* ??? TODO */;
|
||||
if (_effect == NSViewAnimationFadeInEffect)
|
||||
if (_effect == NSViewAnimationFadeInEffect) {}
|
||||
/* ??? TODO */;
|
||||
|
||||
if (progress>=1.0f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue