From 954a0083d9ce7065564c18c9788743eb0cf371f2 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 19 Jun 2018 17:18:27 +0200 Subject: Replace typedef enum with enum in POD type declarations. --- src/enums.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/enums.h') diff --git a/src/enums.h b/src/enums.h index 592cb81e9..aa2bd9ed3 100644 --- a/src/enums.h +++ b/src/enums.h @@ -13,7 +13,7 @@ */ /* Anchor types (imported from Gtk) */ -typedef enum +enum SPAnchorType { SP_ANCHOR_CENTER, SP_ANCHOR_NORTH, @@ -32,7 +32,7 @@ typedef enum SP_ANCHOR_SE = SP_ANCHOR_SOUTH_EAST, SP_ANCHOR_W = SP_ANCHOR_WEST, SP_ANCHOR_E = SP_ANCHOR_EAST -} SPAnchorType; +}; /* preserveAspectRatio */ -- cgit v1.2.3