| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove unused filter-list.h header. | Emmanuel Gil Peyrot | 2018-10-19 | 2 | -66/+0 |
| | | |||||
| * | Remove unused map-list.h header. | Emmanuel Gil Peyrot | 2018-10-19 | 2 | -69/+0 |
| | | |||||
| * | Remove unused function.h header. | Emmanuel Gil Peyrot | 2018-10-19 | 2 | -123/+0 |
| | | |||||
| * | Remove unused tuple.h header. | Emmanuel Gil Peyrot | 2018-10-19 | 2 | -183/+0 |
| | | |||||
| * | Remove util/unordered-containers.h aliases. | Emmanuel Gil Peyrot | 2018-10-18 | 4 | -61/+19 |
| | | |||||
| * | Remove #include "config.h" wherever possible | Eduard Braun | 2018-10-01 | 3 | -10/+0 |
| | | |||||
| * | cppcheck: out of bounds ziptool | Julien Nabet | 2018-09-25 | 1 | -1/+1 |
| | | | | | | [util/ziptool.cpp:1235]: (error) Array 'lenBases[29]' accessed at index 29, which is out of bounds. [util/ziptool.cpp:1236]: (error) Array 'lenBases[29]' accessed at index 29, which is out of bounds. | ||||
| * | Remove #include "config.h" from header files where possible | Eduard Braun | 2018-09-24 | 1 | -4/+0 |
| | | |||||
| * | Replace typedef struct with struct in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 1 | -6/+6 |
| | | |||||
| * | Run clang-tidy’s modernize-use-noexcept pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -2/+2 |
| | | | | | This removes deprecated dynamic exception specifications. | ||||
| * | Run clang-tidy’s modernize-pass-by-value pass. | Emmanuel Gil Peyrot | 2018-06-18 | 6 | -25/+28 |
| | | | | | | This avoids having to pass variables by reference before copying them when calling a constructor. | ||||
| * | Run clang-tidy’s modernize-deprecated-headers pass. | Emmanuel Gil Peyrot | 2018-06-18 | 4 | -7/+7 |
| | | | | | This renames most C <*.h> includes into C++ <c*> includes. | ||||
| * | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 2018-06-18 | 9 | -31/+18 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 9 | -26/+26 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Run clang-tidy’s modernize-use-override pass. | Emmanuel Gil Peyrot | 2018-06-18 | 2 | -6/+6 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 1 | -2/+2 |
| | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will. | ||||
| * | Misc. typos | luz.paz | 2018-05-14 | 3 | -3/+3 |
| | | | | Found via `codespell` and `grep` | ||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 3 | -7/+7 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 3 | -7/+7 |
| | | |||||
| * | Add lots of README's. | Tavmjong Bah | 2018-03-30 | 1 | -0/+9 |
| | | |||||
| * | Removing sample meson build files. | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -51/+0 |
| | | | | | | | | | | | These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY | ||||
| * | [meson-build] libutil | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -0/+51 |
| | | |||||
| * | Misc. typos | luz.paz | 2018-01-08 | 3 | -3/+3 |
| | | | | Found via `codespell` | ||||
| * | Merge branch 'smartpointer_refactor' of gitlab.com:jali/inkscape | Marc Jeanmougin | 2017-10-20 | 3 | -93/+59 |
| |\ | |||||
| | * | Refactor Util::ptr_shared | Jan Lingscheid | 2017-10-18 | 3 | -93/+59 |
| | | | | | | | | | | | Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway. | ||||
| * | | Remove all unused makefile.in | Stefano Facchini | 2017-10-19 | 1 | -17/+0 |
| | | | |||||
| * | | Remove unused util/compose.hpp | Stefano Facchini | 2017-10-19 | 2 | -394/+0 |
| | | | |||||
| * | | Remove unused util/accumulators.h | Stefano Facchini | 2017-10-19 | 2 | -114/+0 |
| |/ | |||||
| * | Remove duplicated build checks. | Elliott Sales de Andrade | 2017-06-15 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | Most of these #defines are not even checked anyway, though they could have the side-effect of failing configure before the build started. However, these checks are redundant due to other checks for the same thing: * concept_check.hpp was added to Boost in 1.19.0, released in 2000. I sincerely doubt anyone is using that version right now, but I added a minimum version to the find_package() call. In any case, no code actually checked the #define, so it wouldn't have built without it anyway. * FindBoehmGC puts gc.h on the compiler search path, so there's no need to try gc/gc.h also. * libintl.h is found by FindIntl. * unordered_set is part of the C++11 standard. * zlib.h is found by find_package(ZLIB). | ||||
| * | Remove deprecated Autotools and btool files. Please use CMake instead | Alex Valavanis | 2016-08-08 | 1 | -49/+0 |
| | | | | (bzr r15046) | ||||
| * | Use C++11 unordered containers | Alex Valavanis | 2016-08-04 | 1 | -41/+5 |
| | | | | (bzr r15040) | ||||
| * | [Bug #1587311] Entering + into stroke width dialog crashes Inkscape. | rafael-g | 2016-06-05 | 1 | -2/+5 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1587311 (bzr r14952) | ||||
| * | [Bug #1550178] Inkscape crashed with segfault in ExpressionEvaluator on OpenBSD. | rafael-g | 2016-06-05 | 1 | -1/+3 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1550178 (bzr r14951) | ||||
| * | Un-revert: Allow Unit object to do conversions, pipe Quality class method ↵ | Martin Owens | 2016-03-22 | 2 | -12/+30 |
| | | | | | | via that. (bzr r14739) | ||||
| * | Reverting 14701. | Tavmjong Bah | 2016-03-18 | 2 | -64/+14 |
| | | | | (bzr r14716.1.2) | ||||
| * | Add a units box to line height and wire in the style units, plus some cleanup | Martin Owens | 2016-03-12 | 2 | -14/+64 |
| | | | | (bzr r14701) | ||||
| * | Remove unused header file. | Tavmjong Bah | 2015-12-09 | 3 | -239/+0 |
| | | | | (bzr r14522) | ||||
| * | fixes a few of jenkins warnings | Marc Jeanmougin | 2015-05-08 | 1 | -1/+1 |
| | | | | (bzr r14126) | ||||
| * | Rename libgc/ => inkgc/ to reflect difference from Boehm GC | Liam P. White | 2015-02-26 | 2 | -2/+2 |
| | | | | (bzr r13950) | ||||
| * | Collect util/ into a static library | Liam P. White | 2015-02-25 | 3 | -90/+10 |
| | | | | (bzr r13948) | ||||
| * | Isolate components of libgc | Liam P. White | 2015-02-25 | 2 | -2/+2 |
| | | | | (bzr r13946) | ||||
| * | Move 'm' handling code from document.cpp to svg-length.cpp and units.cpp to ↵ | Tavmjong Bah | 2014-11-25 | 1 | -0/+3 |
| | | | | | | match handling of 'ft'. (bzr r13758) | ||||
| * | Units: make it absolutely clear that Document properties unit dropdown is ↵ | Johan B. C. Engelen | 2014-11-24 | 2 | -0/+27 |
| | | | | | | | | for UI Display Units. Upon document load, calculate the units used for SVG values, if a viewbox is available. If not, default to "px" SVG units. Change all code to use either Display units OR svg units. (bzr r13751) | ||||
| * | units: remove a remnant from old code. There should be only one UnitTable ↵ | Johan B. C. Engelen | 2014-11-19 | 1 | -1/+0 |
| | | | | | | instantiated. (bzr r13737) | ||||
| * | Fix grid jumping (bug #1342238). | Matthew Petroff | 2014-08-17 | 1 | -1/+5 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1342238 (bzr r13522) | ||||
| * | Update CMake Files | Campbell Barton | 2014-04-27 | 1 | -0/+2 |
| | | | | (bzr r13313) | ||||
| * | fix cmake build errors for changes in 2geom | Johan B. C. Engelen | 2014-04-04 | 1 | -0/+1 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1283174 (bzr r13267) | ||||
| * | Fix for Bug #1301869 (util/signal-blocker.h not included in tarbal) by Ryan ↵ | ryanlerch | 2014-04-03 | 1 | -0/+1 |
| | | | | | | | | | Lerch. Fixed bugs: - https://launchpad.net/bugs/1301869 (bzr r13255) | ||||
| * | End support for obsolete GNU hash. Supported either natively, through TR1 or ↵ | Alex Valavanis | 2014-03-30 | 1 | -31/+0 |
| | | | | | | | | | Boost now Fixed bugs: - https://launchpad.net/bugs/1269346 (bzr r13231) | ||||
| * | Reconnect correctly as documents are replaced. | Jon A. Cruz | 2014-03-08 | 1 | -0/+70 |
| | | | | | | Removed hardcoding to only a single panel. (bzr r13127) | ||||
