Make loopMode ivar an unsigned int.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19723 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2004-07-12 22:25:03 +00:00
parent 7fcdc1ae12
commit dea39ef36a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-07-13 00:21 Alexander Malmberg <alexander@malmberg.org>
* Headers/AppKit/NSMovieView.h: Make loopMode ivar an unsigned int.
2004-07-13 Serg Stoyan <stoyan255@ukr.net>
* Source/NSButtonCell.m:

View file

@ -46,7 +46,7 @@ typedef enum {
float _volume;
struct NSMovieViewFlags {
unsigned int muted: 1;
NSQTMovieLoopMode loopMode: 3;
unsigned int loopMode: 3;
unsigned int plays_selection_only: 1;
unsigned int plays_every_frame: 1;
unsigned int is_controller_visible: 1;