mirror of https://github.com/GNOME/gimp.git
Minor tweaks to two macros. Shouldn't change anything.
2004-06-13 Simon Budig <simon@gimp.org> * app/tools/gimpiscissorstool.c: Minor tweaks to two macros. Shouldn't change anything.
This commit is contained in:
parent
b71dafc8a9
commit
a3936388bc
|
@ -1,3 +1,8 @@
|
|||
2004-06-13 Simon Budig <simon@gimp.org>
|
||||
|
||||
* app/tools/gimpiscissorstool.c: Minor tweaks to two macros.
|
||||
Shouldn't change anything.
|
||||
|
||||
2004-06-13 Jakub Steiner <jimmac@ximian.com>
|
||||
|
||||
* cursors/tool-zoom.png:
|
||||
|
|
|
@ -109,8 +109,8 @@
|
|||
#define SEED_POINT 9
|
||||
|
||||
/* Functional defines */
|
||||
#define PIXEL_COST(x) (x >> 8)
|
||||
#define PIXEL_DIR(x) (x & 0x000000ff)
|
||||
#define PIXEL_COST(x) ((x) >> 8)
|
||||
#define PIXEL_DIR(x) ((x) & 0x000000ff)
|
||||
|
||||
|
||||
struct _ICurve
|
||||
|
|
Loading…
Reference in New Issue