summaryrefslogtreecommitdiffstats
path: root/src/object/color-profile.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanup (remove unneeded win32-specific defines)Patrick Storz2019-06-091-3/+0
|
* Remove support for LCMS 1Karl Cheng2019-05-121-78/+38
| | | | | | | Now that all platforms (including macOS) now support LCMS 2, we no longer need to support LCMS 1. Fixes: https://bugs.launchpad.net/inkscape/+bug/1133014
* Give more descriptive names to document file related variables and functions.Tavmjong Bah2019-02-201-1/+1
| | | | Makes searching through code for them easier.
* modernize loopsMarc Jeanmougin2019-01-021-9/+9
|
* remove Inkscape::URI::getFullPathThomas Holder2018-12-091-16/+9
|
* Clarify licensesMax Gaukler2018-11-081-0/+9
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* SPAttributeEnum typed function argumentsThomas Holder2018-10-061-1/+1
|
* Remove #include "config.h" wherever possibleEduard Braun2018-10-011-1/+1
|
* Use _WIN32 instead of WIN32Eduard Braun2018-10-011-5/+5
| | | | | | | | The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
* Run clang-tidy’s modernize-pass-by-value pass.Emmanuel Gil Peyrot2018-06-181-5/+6
| | | | | This avoids having to pass variables by reference before copying them when calling a constructor.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-4/+2
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-55/+55
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-9/+9
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-9/+9
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-0/+1376
A lot of header clean-up.