From c236bd900a582fc7222ad5312412de3b8ccab0a8 Mon Sep 17 00:00:00 2001 From: Tomas Farago Date: Fri, 14 Feb 2020 14:22:34 +0100 Subject: gbp: fix compute mode enum --- src/ufo-general-backproject-task.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ufo-general-backproject-task.c b/src/ufo-general-backproject-task.c index 2c9ae57..0190a09 100644 --- a/src/ufo-general-backproject-task.c +++ b/src/ufo-general-backproject-task.c @@ -364,8 +364,8 @@ static const GEnumValue parameter_values[] = { }; static GEnumValue compute_type_values[] = { - {CT_FLOAT, "FT_FLOAT", "float"}, - {CT_DOUBLE, "FT_DOUBLE", "double"}, + {CT_FLOAT, "CT_FLOAT", "float"}, + {CT_DOUBLE, "CT_DOUBLE", "double"}, { 0, NULL, NULL} }; @@ -2206,7 +2206,7 @@ ufo_general_backproject_task_class_init (UfoGeneralBackprojectTaskClass *klass) "Data type for performing kernel math operations " "(\"half\", \"float\", \"double\")", g_enum_register_static ("ufo_gbp_compute_type", compute_type_values), - FT_FLOAT, + CT_FLOAT, G_PARAM_READWRITE); properties[PROP_ADDRESSING_MODE] = -- cgit v1.2.1