Revision: 55574
          http://sourceforge.net/p/brlcad/code/55574
Author:   carlmoore
Date:     2013-05-28 19:56:08 +0000 (Tue, 28 May 2013)
Log Message:
-----------
remove trailing blanks/tabs

Modified Paths:
--------------
    brlcad/trunk/TODO
    brlcad/trunk/include/config_win_cmake.h.in
    brlcad/trunk/src/libbrep/libbrep_brep_tools.cpp
    brlcad/trunk/src/libbrep/libbrep_brep_tools.h
    brlcad/trunk/src/libged/edarb.c
    brlcad/trunk/src/tclscripts/archer/ArcherCore.tcl
    brlcad/trunk/src/tclscripts/lib/Ged.tcl

Modified: brlcad/trunk/TODO
===================================================================
--- brlcad/trunk/TODO   2013-05-28 19:53:02 UTC (rev 55573)
+++ brlcad/trunk/TODO   2013-05-28 19:56:08 UTC (rev 55574)
@@ -23,7 +23,7 @@
   and when the defines are added to use the regex.h version it produces
   a regress-red failure.  Same thing on Haiku and OpenIndiana.  We're
   getting away with it on 32 bit Linux systems - builds and regress-red
-  passes on Ubuntu and Fedora - but stricter systems don't like it. 
+  passes on Ubuntu and Fedora - but stricter systems don't like it.
   64-bit systems don't seem to have trouble, at least not so far.
 
 

Modified: brlcad/trunk/include/config_win_cmake.h.in
===================================================================
--- brlcad/trunk/include/config_win_cmake.h.in  2013-05-28 19:53:02 UTC (rev 
55573)
+++ brlcad/trunk/include/config_win_cmake.h.in  2013-05-28 19:56:08 UTC (rev 
55574)
@@ -152,21 +152,21 @@
 #define sys_nerr _sys_nerr
 
 /* set up stat */
-#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8 
+#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8
 #   define stat _stati64
 #else
 #   define stat _stat
 #endif
 
 /* set up fstat */
-#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8 
+#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8
 #   define fstat _fstati64
 #else
 #   define fstat _fstat
 #endif
 
 /* set up lseek */
-#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8 
+#if defined(SIZEOF_VOID_P) && SIZEOF_VOID_P == 8
 #   define lseek _lseeki64
 #else
 #   define lseek _lseek

Modified: brlcad/trunk/src/libbrep/libbrep_brep_tools.cpp
===================================================================
--- brlcad/trunk/src/libbrep/libbrep_brep_tools.cpp     2013-05-28 19:53:02 UTC 
(rev 55573)
+++ brlcad/trunk/src/libbrep/libbrep_brep_tools.cpp     2013-05-28 19:56:08 UTC 
(rev 55574)
@@ -72,7 +72,7 @@
     if ((u_val->Length() <= ON_ZERO_TOLERANCE) || (v_val->Length() <= 
ON_ZERO_TOLERANCE))
         return false;
 
-    // If we have the original surface domain, just return true 
+    // If we have the original surface domain, just return true
     if ((fabs(u_val->Min() - srf->Domain(0).m_t[0]) <= ON_ZERO_TOLERANCE) &&
         (fabs(u_val->Max() - srf->Domain(0).m_t[1]) <= ON_ZERO_TOLERANCE) &&
         (fabs(v_val->Min() - srf->Domain(1).m_t[0]) <= ON_ZERO_TOLERANCE) &&

Modified: brlcad/trunk/src/libbrep/libbrep_brep_tools.h
===================================================================
--- brlcad/trunk/src/libbrep/libbrep_brep_tools.h       2013-05-28 19:53:02 UTC 
(rev 55573)
+++ brlcad/trunk/src/libbrep/libbrep_brep_tools.h       2013-05-28 19:56:08 UTC 
(rev 55574)
@@ -49,8 +49,8 @@
   Create a NURBS surface that corresponds to a subset
   of an input surface, as defined by UV intervals. The
   t parameters may be NULL, in which case working surfaces
-  will be created by the function.  If supplied, existing 
-  surfaces are reused to avoid extra malloc operations 
+  will be created by the function.  If supplied, existing
+  surfaces are reused to avoid extra malloc operations
   and memory usage associated with creating the working
   surfaces.
 
@@ -60,14 +60,14 @@
   @param t1 surface used during split algorithm
   @param t2 surface used during split algorithm
   @param t3 surface used during split algorithm
-  @param t4 surface holding final result of split passes 
+  @param t4 surface holding final result of split passes
   @param[out] result final subsurface - holds *t4 if it was non-NULL as an 
input, else holds a pointer to the new ON_Surface
 
   @return @c true if surface creation is successful or if the subsurface
   is the same as the parent surface, @c false if one or more split
   operations failed.
 */
-NURBS_EXPORT 
+NURBS_EXPORT
 bool ON_Surface_SubSurface(
         const ON_Surface *srf,
         ON_Interval *u_val,

Modified: brlcad/trunk/src/libged/edarb.c
===================================================================
--- brlcad/trunk/src/libged/edarb.c     2013-05-28 19:53:02 UTC (rev 55573)
+++ brlcad/trunk/src/libged/edarb.c     2013-05-28 19:56:08 UTC (rev 55574)
@@ -109,7 +109,7 @@
     int pflag = 0;
     fastf_t peqn[7][4];
     struct bu_vls error_msg = BU_VLS_INIT_ZERO;
-    
+
     if (rt_arb_calc_planes(&error_msg, arb, type, peqn, 
&gedp->ged_wdbp->wdb_tol)) {
        bu_vls_printf(gedp->ged_result_str, "%s. Cannot calculate plane 
equations for faces\n", bu_vls_addr(&error_msg));
        bu_vls_free(&error_msg);

Modified: brlcad/trunk/src/tclscripts/archer/ArcherCore.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/archer/ArcherCore.tcl   2013-05-28 19:53:02 UTC 
(rev 55573)
+++ brlcad/trunk/src/tclscripts/archer/ArcherCore.tcl   2013-05-28 19:56:08 UTC 
(rev 55574)
@@ -6299,7 +6299,7 @@
        return $ret
     }
     set len [llength $args]
-    
+
     if {$len > 2} {
        redrawObj [lindex $args 1] 0
     }

Modified: brlcad/trunk/src/tclscripts/lib/Ged.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/lib/Ged.tcl     2013-05-28 19:53:02 UTC (rev 
55573)
+++ brlcad/trunk/src/tclscripts/lib/Ged.tcl     2013-05-28 19:56:08 UTC (rev 
55574)
@@ -1865,7 +1865,7 @@
 }
 
 ::itcl::body cadwidgets::Ged::grid2model_lu {args} {
-    eval $mGed grid2model_lu $itk_component($itk_option(-pane)) $args 
+    eval $mGed grid2model_lu $itk_component($itk_option(-pane)) $args
 }
 
 ::itcl::body cadwidgets::Ged::grid2view_lu {args} {

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


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to