summaryrefslogtreecommitdiffstats
path: root/src/widgets/ege-paint-def.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-02modernize loopsMarc Jeanmougin1-6/+6
2018-11-08Clarify licensesMax Gaukler1-0/+1
- 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
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-2/+0
2018-06-18Run clang-tidy’s modernize-pass-by-value pass.Emmanuel Gil Peyrot1-2/+3
This avoids having to pass variables by reference before copying them when calling a constructor.
2018-06-18Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot1-3/+3
This renames most C <*.h> includes into C++ <c*> includes.
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-2/+1
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-5/+5
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-5/+5
2017-06-15Remove duplicated build checks.Elliott Sales de Andrade1-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).
2014-05-13fix windows 64bit build. (changes already committed to trunk)Johan B. C. Engelen1-1/+0
(bzr r13341.1.19)
2014-05-12remove unnecessary include, that is causing troubles (it is doing a bad ↵Johan B. C. Engelen1-1/+0
#define in MinGW) (bzr r13363)
2011-11-10cppcheck: initialization / warning cleanupKris De Gussem1-3/+7
(bzr r10736)
2011-10-23Documentation update pass.Jon A. Cruz1-4/+0
(bzr r10692)
2011-10-03Doxygen cleanup.Jon A. Cruz1-2/+3
(bzr r10660)
2011-06-16Fix i18n macro include.Jon A. Cruz1-0/+1
(bzr r10309)
2010-11-25Fix Bug #447385 - Drag'n'drop from swatches doesn't always workAdonis Papaderos1-18/+7
(bzr r9917.1.1)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-1/+1
fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
2009-05-01Build fix for GCC 3.4.4 (added include for stdio.h)Josh Andler1-0/+1
(bzr r7807)
2009-03-20Renamed ColorDef to PaintDef to prep for expanded functionality.Jon A. Cruz1-22/+22
(bzr r7528)
2009-03-18Rough code to preserve drag-n-drop of solid gradients.Jon A. Cruz1-0/+13
(bzr r7518)
2009-03-08Reworked internals of color and drag-n-drop.Jon A. Cruz1-10/+119
(bzr r7439)
2009-03-07Moving dnd data generation into the generic ColorDef class.Jon A. Cruz1-0/+38
(bzr r7433)
2009-03-05Adding clear-color swatch to complement no-color.Jon A. Cruz1-0/+21
(bzr r7422)
2009-03-04Removed boolean "remove" from swatch, used new type enum in ColorDef.Jon A. Cruz1-3/+3
(bzr r7411)
2009-02-21Move files from the src/dialogs/ directory to the places where they Krzysztof Kosi??ski1-0/+0
should be. Build libinkscape.a - should reduce link time. (bzr r7337)
2008-11-21Merge from fe-movedTed Gould1-3/+13
(bzr r6891)
2007-11-25Warning cleanupJon A. Cruz1-1/+2
(bzr r4133)
2006-06-19#include "config.h" tooRalf Stephan1-0/+2
(bzr r1230)
2006-06-19enclose #include <libintl.h> with #ifdef HAVE_LIBINTL_HRalf Stephan1-0/+2
(bzr r1228)
2006-03-28Experimenting with linked colors.Jon A. Cruz1-4/+40
(bzr r316)
2006-03-24Bringing in new color classJon A. Cruz1-26/+65
(bzr r279)