summaryrefslogtreecommitdiffstats
path: root/generic/tkbltGrAxis.h
diff options
context:
space:
mode:
authorAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-21 09:20:28 (GMT)
committerAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-21 11:40:48 (GMT)
commitf14d9dc7c790f40e897bf4f3afaacdde6509adac (patch)
tree9decc8ccfb18a38a94568feea8c9dc66e4ff6fd2 /generic/tkbltGrAxis.h
parent095e27e5a9b983b7a20ea6bc4b9f4989ddb9a160 (diff)
downloadblt-f14d9dc7c790f40e897bf4f3afaacdde6509adac.zip
blt-f14d9dc7c790f40e897bf4f3afaacdde6509adac.tar.gz
blt-f14d9dc7c790f40e897bf4f3afaacdde6509adac.tar.bz2
Enforce explicit downcasting of numeric values
As part of the change, upgrade tkblt internal structures from short/float to int/double, as those are artifacts of the legacy code relying on X. Downcast to short at the latest stage: when interfacing with X.
Diffstat (limited to 'generic/tkbltGrAxis.h')
-rw-r--r--generic/tkbltGrAxis.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/generic/tkbltGrAxis.h b/generic/tkbltGrAxis.h
index 2e35d3f..90a1165 100644
--- a/generic/tkbltGrAxis.h
+++ b/generic/tkbltGrAxis.h
@@ -175,8 +175,8 @@ namespace Blt {
Chain* chain;
Point2d titlePos_;
- unsigned short int titleWidth_;
- unsigned short int titleHeight_;
+ unsigned int titleWidth_;
+ unsigned int titleHeight_;
double min_;
double max_;
double scrollMin_;
@@ -194,14 +194,14 @@ namespace Blt {
Segment2d *segments_;
int nSegments_;
Chain* tickLabels_;
- short int left_;
- short int right_;
- short int top_;
- short int bottom_;
- short int width_;
- short int height_;
- short int maxTickWidth_;
- short int maxTickHeight_;
+ int left_;
+ int right_;
+ int top_;
+ int bottom_;
+ int width_;
+ int height_;
+ int maxTickWidth_;
+ int maxTickHeight_;
Tk_Anchor tickAnchor_;
GC tickGC_;
GC activeTickGC_;