diff options
author | joye <joye> | 2013-09-09 18:14:15 (GMT) |
---|---|---|
committer | joye <joye> | 2013-09-09 18:14:15 (GMT) |
commit | 7ded51ae0ed86494102a0a8e77a3b9b1a62421ab (patch) | |
tree | ab38b09db74f860b7660d2bdee1f3093de7e474e /src | |
parent | 3e01959a5ca8307048f628dba0e425f7f24ca4e9 (diff) | |
download | blt-7ded51ae0ed86494102a0a8e77a3b9b1a62421ab.zip blt-7ded51ae0ed86494102a0a8e77a3b9b1a62421ab.tar.gz blt-7ded51ae0ed86494102a0a8e77a3b9b1a62421ab.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/bltGrElemBar.C | 3 | ||||
-rw-r--r-- | src/bltGrElemLine.C | 3 | ||||
-rw-r--r-- | src/bltGrElemOp.C | 5 | ||||
-rw-r--r-- | src/bltGrLegd.C | 6 | ||||
-rw-r--r-- | src/bltGrMisc.C | 7 |
5 files changed, 11 insertions, 13 deletions
diff --git a/src/bltGrElemBar.C b/src/bltGrElemBar.C index c33d375..9632513 100644 --- a/src/bltGrElemBar.C +++ b/src/bltGrElemBar.C @@ -26,10 +26,9 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include <float.h> -#include <math.h> #include <X11/Xutil.h> +#include "bltMath.h" #include "bltGraph.h" #include "bltGrElem.h" diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C index bf74448..440e3f7 100644 --- a/src/bltGrElemLine.C +++ b/src/bltGrElemLine.C @@ -28,10 +28,9 @@ */ #include <assert.h> -#include <math.h> -#include <float.h> #include <X11/Xutil.h> +#include "bltMath.h" #include "bltGraph.h" #include "bltChain.h" #include "bltGrElem.h" diff --git a/src/bltGrElemOp.C b/src/bltGrElemOp.C index 16cbce6..4355294 100644 --- a/src/bltGrElemOp.C +++ b/src/bltGrElemOp.C @@ -27,14 +27,13 @@ */ #include <assert.h> -#include <float.h> -#include <math.h> #include <X11/Xutil.h> +#include "bltMath.h" #include "bltGraph.h" #include "bltOp.h" #include "bltChain.h" -#include <bltDataTable.h> +#include "bltDataTable.h" #define GRAPH_KEY "BLT Graph Data" diff --git a/src/bltGrLegd.C b/src/bltGrLegd.C index cad35fc..a62eceb 100644 --- a/src/bltGrLegd.C +++ b/src/bltGrLegd.C @@ -26,12 +26,14 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <X11/Xutil.h> +#include <X11/Xatom.h> + +#include "bltMath.h" #include "bltGraph.h" #include "bltOp.h" #include "bltGrElem.h" #include "bltPicture.h" -#include <X11/Xutil.h> -#include <X11/Xatom.h> /* * Selection related flags: diff --git a/src/bltGrMisc.C b/src/bltGrMisc.C index 880c53e..8622b68 100644 --- a/src/bltGrMisc.C +++ b/src/bltGrMisc.C @@ -29,13 +29,12 @@ #include <assert.h> #include <stdarg.h> -#include <float.h> -#include <math.h> #include <X11/Xutil.h> +#include "bltMath.h" #include "bltGraph.h" -#include <bltAlloc.h> -#include <bltOp.h> +#include "bltAlloc.h" +#include "bltOp.h" #define ARROW_LEFT (0) #define ARROW_UP (1) |