From 69c354492708853c534b3d153ff43890b237d66d Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Tue, 26 Nov 2024 16:17:24 -0500 Subject: [PATCH] struct is specific to joint2 - move --- src/libged/ged_private.h | 11 ----------- src/libged/joint2/joint2.c | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/libged/ged_private.h b/src/libged/ged_private.h index 60103f005dc..2b946d4fc2a 100644 --- a/src/libged/ged_private.h +++ b/src/libged/ged_private.h @@ -161,17 +161,6 @@ struct ged_solid_data { struct bview *v; }; -struct _ged_funtab { - char *ft_name; - char *ft_parms; - char *ft_comment; - int (*ft_func)(void); - int ft_min; - int ft_max; - int tcl_converted; -}; - - struct _ged_id_names { struct bu_list l; struct bu_vls name; /**< name associated with region id */ diff --git a/src/libged/joint2/joint2.c b/src/libged/joint2/joint2.c index 718ecbee321..c4cbe7f0ea9 100644 --- a/src/libged/joint2/joint2.c +++ b/src/libged/joint2/joint2.c @@ -35,6 +35,17 @@ #include "../ged_private.h" +struct _ged_funtab { + char *ft_name; + char *ft_parms; + char *ft_comment; + int (*ft_func)(void); + int ft_min; + int ft_max; + int tcl_converted; +}; + + static struct _ged_funtab joint_subcommand_table[] = { {"joint ", "", "Joint command table", NULL, 0, 0, FALSE}, {"?", "[commands]", "summary of available joint commands", NULL, 0, _GED_FUNTAB_UNLIMITED, FALSE},