summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-19 15:18:27 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2018-06-20 09:51:42 +0000
commit954a0083d9ce7065564c18c9788743eb0cf371f2 (patch)
tree3f77797181a9e89dafd9c5f00f6da3dc477d244b /src/selection-chemistry.h
parentReplace typedef struct with struct in POD type declarations. (diff)
downloadinkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.tar.gz
inkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.zip
Replace typedef enum with enum in POD type declarations.
Diffstat (limited to 'src/selection-chemistry.h')
-rw-r--r--src/selection-chemistry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selection-chemistry.h b/src/selection-chemistry.h
index 0c0f78370..387e9b840 100644
--- a/src/selection-chemistry.h
+++ b/src/selection-chemistry.h
@@ -112,12 +112,12 @@ std::vector<SPItem*> &get_all_items(std::vector<SPItem*> &list, SPObject *from,
std::vector<SPItem*> sp_degroup_list (std::vector<SPItem*> &items);
/* selection cycling */
-typedef enum
+enum SPCycleType
{
SP_CYCLE_SIMPLE,
SP_CYCLE_VISIBLE, // cycle only visible items
SP_CYCLE_FOCUS // readjust visible area to view selected item
-} SPCycleType;
+};