summaryrefslogtreecommitdiffstats
path: root/src/selection-describer.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixing coding styleJabier Arraiza2019-04-271-1/+1
|
* Fixes some crashes when selector is * and allow select multiple tagsJabier Arraiza2019-04-271-0/+3
|
* modernize loopsMarc Jeanmougin2019-01-021-6/+3
|
* Replace InkGC with std::shared_ptr for MessageStackEmmanuel Gil Peyrot2018-12-031-2/+4
| | | | | | There are many places which still use this stack unmanaged (using desktop->getMessageStack()) but those are all leaf calls which make use of the stack and never store it anywhere, so this is fine.
* Clarify licensesMax Gaukler2018-11-081-1/+2
| | | | | | - 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
* Remove #include "config.h" wherever possibleEduard Braun2018-10-011-3/+0
|
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-7/+7
| | | | | 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-1/+1
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-1/+1
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-9/+13
| | | | A lot of header clean-up.
* Cleanup comments and unused functionsJabier Arraiza2017-12-301-13/+0
|
* Fix message probles on boolops and for example when moving or transforming a ↵Jabiertxo Arraiza Cenoz2017-12-291-1/+4
| | | | selection no message
* First batchMarc Jeanmougin2017-10-011-10/+9
|
* Merged trunkAdrian Boguszewski2016-08-031-10/+1
|\ | | | | (bzr r14954.1.29)
| * Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-10/+1
| | | | | | (bzr r15034)
| * Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-1/+10
| | | | | | (bzr r15027)
| * Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-10/+1
| | | | | | (bzr r15025)
* | Added items as a range functionAdrian Boguszewski2016-07-031-1/+1
|\| | | | | (bzr r14954.1.13)
* | Moved next functions, added namespace, renamed range functionsAdrian Boguszewski2016-06-251-1/+1
|/ | | (bzr r14954.1.10)
* static code analysisKris De Gussem2015-10-291-3/+3
| | | (bzr r14436)
* mergingMarc Jeanmougin2015-04-261-2/+2
|\ | | | | (bzr r13922.1.13)
| * Fix for Bug #1428967 (Inkscape0.91 crashes under interface using ↵Nicolas Dufour2015-03-061-2/+2
| | | | | | | | | | | | | | | | Chinese/Taiwan(zh-tw)). Fixed bugs: - https://launchpad.net/bugs/1428967 (bzr r13968)
* | corrected the casts (hopefully)Marc Jeanmougin2015-02-271-4/+4
| | | | | | (bzr r13922.1.10)
* | Put a few std::vector<SPitem*>Marc Jeanmougin2015-02-191-7/+7
| | | | | | (bzr r13922.1.5)
* | At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin2015-02-171-17/+17
|/ | | | | | | | change that GSList* with a std::list, then resolve the few problems" So, i tried that. And I will continue tomorrow, and the days after, on and on. (bzr r13922.1.1)
* Removed SP_USE/SP_IS_USE Gtk-ish macros and cleaned affected files.Jon A. Cruz2014-11-101-28/+49
| | | (bzr r13700)
* i18n. Fix for Bug #1318929 (untranslatable string in trunk-r13370).Nicolas Dufour2014-05-141-3/+21
| | | | | | Translations. PO template update. Translations. French translation update. (bzr r13374)
* Partially fix crashes when entering a group with deleted idKrzysztof Kosi??ski2013-10-311-4/+9
| | | (bzr r12754)
* Added some consts.Markus Engel2013-10-261-1/+1
| | | (bzr r12729)
* change names for displayName and detailedDescription, improve char code and ↵Martin Owens2013-09-241-13/+14
| | | | | remove const. (bzr r12584)
* Fix format security errorsAlex Valavanis2013-09-211-1/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1193025 (bzr r12563)
* Refactor status-bar text for multiple items, was very brokenMartin Owens2013-09-201-88/+20
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1199192 (bzr r12550)
* Merged from trunk (r12465).Markus Engel2013-08-041-2/+1
|\ | | | | (bzr r11608.1.119)
| * reduce variable scopeJohan B. C. Engelen2013-08-031-2/+1
| | | | | | (bzr r12464)
* | Merged from trunk (r12419).Markus Engel2013-07-141-52/+22
|\| | | | | (bzr r11608.1.107)
| * Code readability improvements and licence changes for action-context.*Eric Greveson2013-07-041-2/+2
| | | | | | | | | | based on merge request code review and feedback (bzr r12387.1.7)
| * Factored layer model out into new Inkscape::LayerModel class. This allowsEric Greveson2013-07-011-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Inkscape::Selection to use a LayerModel that is not associated with a UI. Changed the interface of verbs (SPAction) to use a new ActionContext rather than UI::View::View, again so that verbs may be used in a console mode. Modified boolean operation verbs to work in console-only mode. Fixed up DESKTOP_IS_ACTIVE macro to work in the case of no desktops. Modified main.cpp to process selections and verbs in no-GUI mode. Other changes are all consequences of the SPDesktop, Selection and LayerModel interface changes. (bzr r12387.1.1)
| * Fix my own mis-credit and some symbols labelsMartin Owens2013-06-171-1/+1
| | | | | | (bzr r12380)
| * Fix layer selection so defs don't change layers, updated symbol text.Martin Owens2013-06-161-0/+8
| | | | | | (bzr r12379)
| * Fix bug where symbols weren't identified as suchMartin Owens2013-06-111-2/+5
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1179224 (bzr r12366)
| * Fixed logic error confusing bitwise and with logical and.Jon A. Cruz2013-04-291-1/+1
| | | | | | | | | | Whitespace cleanup to make the issue easier to spot. (bzr r12311)
* | Merged Item.Markus Engel2013-04-051-1/+1
| | | | | | (bzr r11608.1.81)
* | Cleaned up a bit. Uses some C++11 features.Markus Engel2013-04-021-22/+66
|/ | | (bzr r11608.1.72)
* Add symbols dialog. See: http://wiki.inkscape.org/wiki/index.php/SymbolsDialogTavmjong Bah2012-10-111-1/+6
| | | (bzr r11782)
* code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton2012-10-041-3/+3
| | | | | they are not used elsewhere. (bzr r11735)
* i18n. Fix for Bug #1034663 (Split msgid "Text" for menu Effects).Nicolas Dufour2012-08-151-1/+1
| | | | | Translations. inkscape.pot and French translation update. (bzr r11606)
* Fixed warning with printf format. Also corrected inproper type that resulted ↵Jon A. Cruz2012-05-171-12/+15
| | | | | in the use of C-style const casts. (bzr r11372)
* minor fix for translationsKris De Gussem2012-05-151-1/+1
| | | (bzr r11366)
* UI. Filtered objects count (patch by David Mathog).Nicolas Dufour2012-05-111-1/+26
| | | | | Translations. Inkscape.pot and French translation update. (bzr r11355)
* cppcheckKris De Gussem2011-10-181-1/+1
| | | (bzr r10683)