diff --git a/libgimp/gimpenums.h b/libgimp/gimpenums.h index 35b5ca6f96..9f8815fbb8 100644 --- a/libgimp/gimpenums.h +++ b/libgimp/gimpenums.h @@ -268,8 +268,8 @@ typedef enum typedef enum { - GIMP_SIZE_PIXELS, - GIMP_SIZE_POINTS + GIMP_PIXELS, + GIMP_POINTS } GimpSizeType; diff --git a/plug-ins/script-fu/script-fu-constants.c b/plug-ins/script-fu/script-fu-constants.c index 3cdcc36b0e..30b585910e 100644 --- a/plug-ins/script-fu/script-fu-constants.c +++ b/plug-ins/script-fu/script-fu-constants.c @@ -231,8 +231,8 @@ init_generated_constants (void) setvar (cintern ("VERTICAL"), flocons (1), NIL); setvar (cintern ("UNKNOWN"), flocons (2), NIL); - setvar (cintern ("SIZE-PIXELS"), flocons (0), NIL); - setvar (cintern ("SIZE-POINTS"), flocons (1), NIL); + setvar (cintern ("PIXELS"), flocons (0), NIL); + setvar (cintern ("POINTS"), flocons (1), NIL); return; }