Revision: 76697
          http://sourceforge.net/p/brlcad/code/76697
Author:   starseeker
Date:     2020-08-10 20:11:54 +0000 (Mon, 10 Aug 2020)
Log Message:
-----------
Get the other renames

Modified Paths:
--------------
    brlcad/branches/bioh/src/libged/ged_private.h
    brlcad/branches/bioh/src/libged/ged_util.c
    brlcad/branches/bioh/src/libged/rtcheck/rtcheck.c
    brlcad/branches/bioh/src/libtclcad/tclcad_obj.c

Modified: brlcad/branches/bioh/src/libged/ged_private.h
===================================================================
--- brlcad/branches/bioh/src/libged/ged_private.h       2020-08-10 20:06:30 UTC 
(rev 76696)
+++ brlcad/branches/bioh/src/libged/ged_private.h       2020-08-10 20:11:54 UTC 
(rev 76697)
@@ -653,8 +653,6 @@
     char                        **gd_rt_cmd;    /* DEPRECATED - will be 
removed, do not use */
     int                         gd_rt_cmd_len;  /* DEPRECATED - will be 
removed, do not use */
 
-    void                        (*gd_rtCmdNotify)(int aborted); /**< @brief  
function called when rt command completes */
-
     int                         gd_uplotOutputMode;     /**< @brief  output 
mode for unix plots */
 
     /* qray state */

Modified: brlcad/branches/bioh/src/libged/ged_util.c
===================================================================
--- brlcad/branches/bioh/src/libged/ged_util.c  2020-08-10 20:06:30 UTC (rev 
76696)
+++ brlcad/branches/bioh/src/libged/ged_util.c  2020-08-10 20:11:54 UTC (rev 
76697)
@@ -1374,8 +1374,8 @@
        else
            bu_log("Raytrace complete.\n");
 
-       if (gedp->ged_gdp->gd_rtCmdNotify != (void (*)(int))0)
-           gedp->ged_gdp->gd_rtCmdNotify(aborted);
+       if (gedp->ged_rtCmdNotify != (void (*)(int))0)
+           gedp->ged_rtCmdNotify(aborted);
 
        /* free rrtp */
        bu_ptbl_rm(&gedp->ged_subp, (long *)rrtp);

Modified: brlcad/branches/bioh/src/libged/rtcheck/rtcheck.c
===================================================================
--- brlcad/branches/bioh/src/libged/rtcheck/rtcheck.c   2020-08-10 20:06:30 UTC 
(rev 76696)
+++ brlcad/branches/bioh/src/libged/rtcheck/rtcheck.c   2020-08-10 20:11:54 UTC 
(rev 76697)
@@ -149,8 +149,8 @@
     /* Get textual output from rtcheck */
     if (bu_process_read((char *)line, &count, rrtp->p, BU_PROCESS_STDERR, 
RT_MAXLINE) <= 0) {
        rtcp->read_failed = 1;
-       if (gedp->ged_gdp->gd_rtCmdNotify != (void (*)(int))0)
-           gedp->ged_gdp->gd_rtCmdNotify(0);
+       if (gedp->ged_rtCmdNotify != (void (*)(int))0)
+           gedp->ged_rtCmdNotify(0);
     }
 
 

Modified: brlcad/branches/bioh/src/libtclcad/tclcad_obj.c
===================================================================
--- brlcad/branches/bioh/src/libtclcad/tclcad_obj.c     2020-08-10 20:06:30 UTC 
(rev 76696)
+++ brlcad/branches/bioh/src/libtclcad/tclcad_obj.c     2020-08-10 20:11:54 UTC 
(rev 76697)
@@ -1326,7 +1326,7 @@
     top->to_gedp->ged_destroy_vlist_callback = to_destroy_vlist_callback;
 
     BU_ASSERT(gedp->ged_gdp != NULL);
-    top->to_gedp->ged_gdp->gd_rtCmdNotify = to_rt_end_callback_internal;
+    top->to_gedp->ged_rtCmdNotify = to_rt_end_callback_internal;
 
     // Initialize libtclcad GED data container
     struct tclcad_ged_data *tgd;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to