mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 23:31:02 +00:00
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:
parent
7fcdc1ae12
commit
dea39ef36a
2 changed files with 5 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue