summaryrefslogtreecommitdiff
path: root/src/dged/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dged/text.h')
-rw-r--r--src/dged/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dged/text.h b/src/dged/text.h
index 28bd325..505c86a 100644
--- a/src/dged/text.h
+++ b/src/dged/text.h
@@ -66,10 +66,10 @@ struct text_property_colors {
struct text_property {
enum text_property_type type;
- union {
+ union property_data {
struct text_property_colors colors;
void *userdata;
- };
+ } data;
};
void text_add_property(struct text *text, uint32_t start_line,