| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | removed a few useless SP_OBJECT() casts | Marc Jeanmougin | 2015-04-27 | 1 | -14/+14 |
| | | | | (bzr r13922.1.17) | ||||
| * | Just reread the entire diff against trunk. Given the diff size, i must have ↵ | Marc Jeanmougin | 2015-04-26 | 1 | -7/+3 |
| | | | | | | | | | | | forgotten things, but hopefully, there are only very few changes of semantics: ->childList is now in the intuitive order (childList()[0] is now firstChild) -> sp_selection_paste_impl is now in the opposite order (change is local to selection-chemistry.cpp, and simplify a few things) -> selection.setReprList now takes the list in the opposite order. It was always the case (the list was always reversed before handing to it) -> a few comparison functions now work "the c++ way": the C way was to return -1 if a<b, 0 if a==b and 1 if a>b, now they return (bool)(a<b) (bzr r13922.1.15) | ||||
| * | more cast cleanup | Marc Jeanmougin | 2015-02-27 | 1 | -18/+18 |
| | | | | (bzr r13922.1.11) | ||||
| * | corrected the casts (hopefully) | Marc Jeanmougin | 2015-02-27 | 1 | -85/+63 |
| | | | | (bzr r13922.1.10) | ||||
| * | Merge, resolved conflicts | Marc Jeanmougin | 2015-02-23 | 1 | -58/+54 |
| |\ | | | | | (bzr r13922.1.8) | ||||
| | * | Fix for the performance loss in ungrouping observed by Tavmjong in rev 13933 | Marc Jeanmougin | 2015-02-21 | 1 | -2/+1 |
| | | | | | | | | | | | Added std::list<SPObject*> hrefList member to SPObject class. (bzr r13935) | ||||
| | * | Fix for bug 1409591 : | Marc Jeanmougin | 2015-02-20 | 1 | -64/+32 |
| | | | | | | | | | | | | | | | | | Inconsistent selection with 'Select same' on object with clones Fixed bugs: - https://launchpad.net/bugs/1409195 (bzr r13930) | ||||
| | * | Clones. Fix for bug #1245339 (When changing a clone's parent's layer, the ↵ | mc | 2015-02-16 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | clones shift position) and bug #653574 (Ungrouping moves clones inside nested groups). Fixed bugs: - https://launchpad.net/bugs/653574 - https://launchpad.net/bugs/1245339 (bzr r13924) | ||||
| * | | added a set to the Selection | Marc Jeanmougin | 2015-02-19 | 1 | -5/+5 |
| | | | | | | | (bzr r13922.1.6) | ||||
| * | | Put a few std::vector<SPitem*> | Marc Jeanmougin | 2015-02-19 | 1 | -194/+179 |
| | | | | | | | (bzr r13922.1.5) | ||||
| * | | I can't really understand why, but i can now launch inkscape without it ↵ | mc | 2015-02-18 | 1 | -47/+35 |
| | | | | | | | | | | | | | | | | | segfaulting. That's an improvement. Next thing: code cleaning, replacing containers with vectors (bzr r13922.1.4) | ||||
| * | | OMG IT'S COMPILING. | Mc | 2015-02-18 | 1 | -91/+83 |
| | | | | | | | | | | | | | IT'S REALLY COMPILING ! (Of course it segfaults (what did you expect ?)) (bzr r13922.1.3) | ||||
| * | | Just... | mc | 2015-02-18 | 1 | -7/+6 |
| | | | | | | | | | | | | | | | some... more... lines... (bzr r13922.1.2) | ||||
| * | | At first, I was thinking "I just have to go to the selection file, and ↵ | Marc Jeanmougin | 2015-02-17 | 1 | -413/+366 |
| |/ | | | | | | | | 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) | ||||
| * | Remove sp_style_new(). | Tavmjong Bah | 2014-12-25 | 1 | -4/+5 |
| | | | | (bzr r13822.1.6) | ||||
| * | Remove sp_desktop_document and finish cleanup of desktop-handles.h | Liam P. White | 2014-12-21 | 1 | -52/+52 |
| | | | | (bzr r13820) | ||||
| * | Purge sp_desktop_sketch and sp_desktop_tempgroup | Liam P. White | 2014-12-21 | 1 | -1/+1 |
| | | | | (bzr r13816) | ||||
| * | Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelection | Liam P. White | 2014-12-21 | 1 | -35/+35 |
| | | | | (bzr r13809) | ||||
| * | fix errors in string conversion. (rev13762, 13763) | Johan B. C. Engelen | 2014-11-28 | 1 | -6/+6 |
| | | | | (bzr r13777) | ||||
| * | Update to trunk r13766 | Liam P. White | 2014-11-26 | 1 | -22/+17 |
| |\ | | | | | (bzr r13341.5.24) | ||||
| | * | More c++ string usage. | Johan B. C. Engelen | 2014-11-25 | 1 | -16/+7 |
| | | | | | | | (bzr r13763) | ||||
| | * | More C++ string usage. | Johan B. C. Engelen | 2014-11-25 | 1 | -4/+2 |
| | | | | | | | (bzr r13762) | ||||
| | * | Fix applying LPE to clones (through the "+" button in the LPE dialog). | Johan B. C. Engelen | 2014-11-25 | 1 | -2/+8 |
| | | | | | | | | | | | | | | | The caller to sp_selection_clone_original_path_lpe expects a new path to be selected, and it will change the SVG "id" of that selected path. The bug was that sp_selection_clone_original_path_lpe no longer selected the new path, it maintained the selection of the path to be "clone_original_path'ed". And thus the path referenced by the original clone got its ID changed. Horror resulted. Fixed by selecting the newly created path, as before. Added code to the caller that checks if the newly selected path is not nullptr, and that it is not the same as the selected path before the call. (bzr r13761) | ||||
| * | | Update to trunk r13750 | Liam P. White | 2014-11-24 | 1 | -2/+2 |
| |\| | | | | | (bzr r13341.5.23) | ||||
| | * | Macro cleanup of commented out code. | Jon A. Cruz | 2014-11-15 | 1 | -1/+1 |
| | | | | | | | (bzr r13710) | ||||
| | * | Fix a bug releasing LPE clip and mask | Jabier Arraiza Cenoz | 2014-11-12 | 1 | -1/+1 |
| | | | | | | | (bzr r13705) | ||||
| * | | Update to trunk r13690 | Liam P. White | 2014-11-09 | 1 | -3/+6 |
| |\| | | | | | (bzr r13341.5.22) | ||||
| | * | Black list some properties that shouldn't appear in default styles. | Tavmjong Bah | 2014-11-08 | 1 | -0/+3 |
| | | | | | | | (bzr r13679) | ||||
| | * | update svg-length-test.h from 90 to 96 dpi | Alvin Penner | 2014-11-03 | 1 | -3/+3 |
| | | | | | | | (bzr r13664) | ||||
| * | | Update to trunk r13648 | Liam P. White | 2014-10-31 | 1 | -237/+366 |
| |\| | | | | | (bzr r13341.5.19) | ||||
| | * | Update to trunk r13638 | Liam P. White | 2014-10-25 | 1 | -237/+366 |
| | |\ | | | | | | | (bzr r13341.1.286) | ||||
| | | * | Correct casting from wrong variable. | Jon A. Cruz | 2014-10-24 | 1 | -1/+1 |
| | | | | | | | | | | (bzr r13637) | ||||
| | | * | Initial removal of box3d outdated GTKish macros. | Jon A. Cruz | 2014-10-24 | 1 | -235/+366 |
| | | | | | | | | | | (bzr r13634) | ||||
| * | | | Update to experimental r13598 | Liam P. White | 2014-10-08 | 1 | -4/+8 |
| |\| | | | | | | | | (bzr r13341.5.17) | ||||
| | * | | Update to trunk r13580 | Liam P. White | 2014-10-06 | 1 | -1/+1 |
| | |\| | | | | | | | (bzr r13341.1.255) | ||||
| | | * | i18n. Adding context to the "Group" verb (undo history). | Nicolas Dufour | 2014-09-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Translations. Translation template and French translation udpate. (bzr r13554) | ||||
| | * | | Move more UI code into ui/ | Liam P. White | 2014-10-05 | 1 | -2/+2 |
| | | | | | | | | | | (bzr r13341.1.253) | ||||
| | * | | Rename marker.cpp -> sp-marker.cpp to reflect inclusion in SP-tree | Liam P. White | 2014-10-05 | 1 | -1/+1 |
| | | | | | | | | | | (bzr r13341.1.248) | ||||
| | * | | this patch fix the problem whith clips and mask update in live effects. | Jabier Arraiza Cenoz | 2014-09-29 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | More info in the bug: https://bugs.launchpad.net/inkscape/+bug/1241902 (bzr r13341.1.229) | ||||
| | * | | Update to experimental r13483 | Liam P. White | 2014-08-17 | 1 | -9/+8 |
| | |\| | | | | | | | (bzr r13090.1.105) | ||||
| | * | | Clone Original -> Fill Between Many | Liam P. White | 2014-08-14 | 1 | -43/+42 |
| | | | | | | | | | | (bzr r13090.1.104) | ||||
| | * | | Update to experimental r13452 | Liam P. White | 2014-07-30 | 1 | -2/+5 |
| | |\ \ | | | | | | | | | (bzr r13090.1.95) | ||||
| | * \ \ | Update to experimental r13418 | Liam P. White | 2014-07-05 | 1 | -4/+0 |
| | |\ \ \ | | | | | | | | | | | (bzr r13090.1.87) | ||||
| | * | | | | Add clip group option from Ponyscape | Liam P. White | 2014-06-14 | 1 | -0/+112 |
| | | | | | | | | | | | | | | | | (bzr r13090.1.83) | ||||
| * | | | | | Update to experimental r13565 | Liam P. White | 2014-09-27 | 1 | -43/+154 |
| | | | | | | | | | | | | | | | | (bzr r13341.5.16) | ||||
| * | | | | | Update to experimental r13527 | Liam P. White | 2014-08-30 | 1 | -9/+8 |
| |\ \ \ \ \ | | |_|_|/ | |/| | | | (bzr r13341.5.15) | ||||
| | * | | | | Fix shift of transformation center on pasting | Diederik van Lierop | 2014-08-16 | 1 | -6/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1247799 (bzr r13521) | ||||
| | * | | | | Fix some transformation center regressions, related to the viewbox/units changes | Diederik van Lierop | 2014-08-14 | 1 | -5/+2 |
| | | |_|/ | |/| | | | | | | (bzr r13512) | ||||
| * | | | | Update to experimental r13464 | Liam P. White | 2014-08-08 | 1 | -2/+5 |
| |\| | | | | | | | | | | | (bzr r13341.5.14) | ||||
| | * | | | Fix moving of item center: 1) at paste and 2) at changing document units | Diederik van Lierop | 2014-07-12 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1247799 (bzr r13452) | ||||
