mirror of
https://github.com/brl/mutter.git
synced 2025-02-08 17:44:09 +00:00
2008-07-30 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-fixed.h: * clutter/clutter-units.h: Fix the upper and lower boundaries of ClutterFixed and ClutterUnit types; G_MAXINT16 and G_MININT16 were not enough to describe those values.
This commit is contained in:
parent
56be7fb7ea
commit
ba257b0196
@ -1,3 +1,10 @@
|
|||||||
|
2008-07-30 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* clutter/clutter-fixed.h:
|
||||||
|
* clutter/clutter-units.h: Fix the upper and lower boundaries of
|
||||||
|
ClutterFixed and ClutterUnit types; G_MAXINT16 and G_MININT16
|
||||||
|
were not enough to describe those values.
|
||||||
|
|
||||||
2008-07-30 Ross Burton <ross@openedhand.com>
|
2008-07-30 Ross Burton <ross@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-main.c:
|
* clutter/clutter-main.c:
|
||||||
|
@ -435,7 +435,7 @@ typedef struct _ClutterParamSpecFixed ClutterParamSpecFixed;
|
|||||||
*
|
*
|
||||||
* Since: 0.8
|
* Since: 0.8
|
||||||
*/
|
*/
|
||||||
#define CLUTTER_MAXFIXED G_MAXINT16
|
#define CLUTTER_MAXFIXED CFX_MAX
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CLUTTER_MINFIXED:
|
* CLUTTER_MINFIXED:
|
||||||
@ -444,7 +444,7 @@ typedef struct _ClutterParamSpecFixed ClutterParamSpecFixed;
|
|||||||
*
|
*
|
||||||
* Since: 0.8
|
* Since: 0.8
|
||||||
*/
|
*/
|
||||||
#define CLUTTER_MINFIXED G_MININT16
|
#define CLUTTER_MINFIXED CFX_MIN
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ClutterParamSpecFixed
|
* ClutterParamSpecFixed
|
||||||
|
@ -152,7 +152,7 @@ typedef gint32 ClutterUnit;
|
|||||||
*
|
*
|
||||||
* Since: 0.8
|
* Since: 0.8
|
||||||
*/
|
*/
|
||||||
#define CLUTTER_MAXUNIT G_MAXINT16
|
#define CLUTTER_MAXUNIT (0x7fffffff)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CLUTTER_MINUNIT:
|
* CLUTTER_MINUNIT:
|
||||||
@ -161,7 +161,7 @@ typedef gint32 ClutterUnit;
|
|||||||
*
|
*
|
||||||
* Since: 0.8
|
* Since: 0.8
|
||||||
*/
|
*/
|
||||||
#define CLUTTER_MINUNIT G_MININT16
|
#define CLUTTER_MINUNIT (0x80000000)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CLUTTER_VALUE_HOLDS_UNIT:
|
* CLUTTER_VALUE_HOLDS_UNIT:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user