Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Prevent dangling pointer | Adrián Medraño Calvo | 2017-07-27 | 1 | -1/+3 |
| | | | | | The freed pointer would dangle as a result of the early exit, causing a double-free upon next Blt::LineMarker::map invocation. | ||||
* | Make sure enough arguments are passed before accessing them | Adrián Medraño Calvo | 2017-07-27 | 1 | -0/+6 |
| | | | | | | Would eventually segfault when invoking: .g inside 0; | ||||
* | Update axis' margin when using it | Adrián Medraño Calvo | 2017-07-27 | 1 | -0/+2 |
| | |||||
* | Use axis' own classid to determine the type | Adrián Medraño Calvo | 2017-07-27 | 1 | -2/+6 |
| | |||||
* | Import std namespace | Adrián Medraño Calvo | 2017-07-25 | 1 | -0/+1 |
| | |||||
* | Correct function name | Adrián Medraño Calvo | 2017-07-21 | 1 | -1/+1 |
| | |||||
* | Fix MSVC's C2375 "redefinition with different linkage" | Adrián Medraño Calvo | 2017-07-21 | 3 | -63/+60 |
| | | | | | | | Apply Tcl's mechanism for reusing headers as internal and public API: presence of a particular preprocessor definition (BUILD_tkblt) switches declarations from specifying symbols "to be imported" or, alternatively, "exporting". | ||||
* | Add cmath and printf wrappers for Windows | Adrián Medraño Calvo | 2017-07-21 | 10 | -4/+87 |
| | | | | Needed for compiling with MSVC 2010. | ||||
* | Fix polymorphic variant in jump table | Adrián Medraño Calvo | 2017-07-21 | 1 | -15/+15 |
| | |||||
* | Enforce explicit downcasting of numeric values | Adrián Medraño Calvo | 2017-07-21 | 20 | -166/+186 |
| | | | | | | | 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. | ||||
* | Use double for comparing with GraphOption's aspect | Adrián Medraño Calvo | 2017-07-21 | 1 | -2/+2 |
| | |||||
* | Upgrade BarGroup's lastY to double | Adrián Medraño Calvo | 2017-07-21 | 1 | -1/+1 |
| | |||||
* | Upgrade BarGroup's sum to double | Adrián Medraño Calvo | 2017-07-21 | 2 | -2/+2 |
| | |||||
* | Remove superfluous literal suffixes | Adrián Medraño Calvo | 2017-07-21 | 5 | -9/+9 |
| | |||||
* | Upgrade getBoundingBox angle to double | Adrián Medraño Calvo | 2017-07-21 | 4 | -8/+8 |
| | |||||
* | Upgrade vScale_/hScale_ to double | Adrián Medraño Calvo | 2017-07-21 | 2 | -4/+4 |
| | |||||
* | Place axes within their area when using multiple axis in a single margin | Adrián Medraño Calvo | 2017-07-20 | 1 | -51/+51 |
| | |||||
* | Better align with TEA's expected file layout | Adrián Medraño Calvo | 2017-07-18 | 93 | -0/+30103 |
TEA is quite picky about packages placing their sources in the generic/, unix/, etc. directories. An immediate benefit of this change is support for building in a separate directory. |