Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-08 | Recover some methods needed by windows directx | Korrawit Pruegsanusak | |
This partially reverts b3c3e116ff0eb9b550b73d3901395c042e31d192 | |||
2012-02-08 | Added (and improved) READMEs for modules which used to be in libs-gui | Josh Heidenreich | |
2012-02-06 | Change the zoom factor to 2^(1/6), hopefully it fits all :-) | Jan Holesovsky | |
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-02-01 | unusedcode.easy: Removed unused code | Alexander Bergmann | |
2012-01-28 | remove traces of b2dhompoint | Thomas Arnhold | |
2012-01-28 | unusedcode.easy: Removed unused code (basegfx::B2DHomPoint) | Alexander Bergmann | |
2012-01-28 | Actually apply substance of previous unused code removal | Alexander Bergmann | |
2012-01-27 | unusedcode.easy: Removed unused code (basegfx::B3DPolygon, ↵ | Alexander Bergmann | |
basegfx::B3DPolyPolygon) | |||
2012-01-25 | optimized zoom to use more common intervals | Tim Hardeck | |
Round zoom values beginning with 50 to a multiple of 5, with 100 to one of 10, with 500 to one of 50 and with 1000 to one of 100. The step 100 is enforced to have one fixed point. | |||
2012-01-25 | Removing unused code (basegfx). | Alexander Bergmann | |
2012-01-21 | Improve checking for emptiness | Thomas Arnhold | |
2012-01-21 | Removed some unused parameters; added SAL_UNUSED_PARAMETER. | Stephan Bergmann | |
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers. | |||
2012-01-20 | Code clean up. | Stephan Bergmann | |
2012-01-19 | remove unused methods | Thomas Arnhold | |
2012-01-18 | decompose() should return the original rotation angle and scales. | Thorsten Behrens | |
decompose() would return incorrect rotation angle and scales when the angle was exactly 180 degrees, due to FPU rounding error. This commit fixes it. This problem would manifest itself when inserting an image into Calc/Draw, cropping it, and flipping it vertically or rotating it at exactly 180 degrees. Before the fix the image would simply disappear. | |||
2012-01-18 | Add more unit test coverage for generic clipper | Thorsten Behrens | |
With the changes Julien brought in via 66fd9a610cd876c236486a2089d8d58dca866e25, thought it was a good idea to cover those code paths as well - done now, via the checkCrossoverSolver() tests. | |||
2012-01-18 | Fix error in handling 'z' for svg:d string parsing | Thorsten Behrens | |
Previously 'z' did not update the current point to the start point of the subpath, as required by http://www.w3.org/TR/SVG/paths.html#PathDataClosePathCommand. Fixed now, and adapted all the unit tests. | |||
2012-01-18 | Remove old-fashioned VERBOSE, use OSL_DEBUG_LEVEL instead. | Thorsten Behrens | |
2012-01-17 | callcatcher: remove recently unused code | Caolán McNamara | |
2012-01-10 | callcatcher: update list | Caolán McNamara | |
2012-01-08 | callcatcher: Remove unused code | August Sodora | |
2012-01-06 | Fix "Same expression on both sides of '&&'" (reported by cppcheck) | Julien Nabet | |
2012-01-06 | unusedcode: remove Plotter | Matúš Kukan | |
2011-12-22 | unusedcode: remove various unused classes | Matúš Kukan | |
2011-12-19 | Remove DebugPlotter | August Sodora | |
2011-12-13 | Fix abort from stl debug iterators' invalid access. | Thorsten Behrens | |
Triggered by fdo#43725, incrementing an invalid iterator bombs - though this seems a corner case, depends on whether one considers "+= 0" as incrementing or not. | |||
2011-12-13 | More efficient insertion of B3DPolygons | Thorsten Behrens | |
* some cleanup - removed ugly-as-hell exposure of only parts of the internal data struct on B2DPolygon (and reworked the only client of that code) * added stl-style begin/end to B3DPolyPolygon as well, mirroring B2DPolyPolygon, plus adapting the insert() func to make use of that (avoiding loads of temporaries) | |||
2011-12-07 | in modules, when we have a env we are in stage gbuild | Bjoern Michaelsen | |
2011-12-01 | typo fix: explicitely -> explicitly | Lior Kaplan | |
2011-12-01 | Remove uses of charAt | August Sodora | |
2011-11-29 | move reconfigure into gbuild | Bjoern Michaelsen | |
2011-11-27 | remove pch from the include list | Norbert Thiebaud | |
2011-11-25 | make gbuild makefiles run independant of pwd again | Bjoern Michaelsen | |
2011-11-16 | tweak gbuild standart Makefile to allow partial build in unsourced env | Norbert Thiebaud | |
This allow to run make in a module wihtout the need to source Env.Host.sh. | |||
2011-11-07 | Remove two more unused headers from basegfx | Joseph Powers | |
2011-11-07 | Fix linking on Windows | Fridrich Štrba | |
Don't declare dllexport classes that are purely inlined. This will cause for the binary that links then to look for dll symbols, which are naturlly not present. | |||
2011-11-05 | Why build empty objects. | Joseph Powers | |
The source files don't generate any code and just declare an inline class; thus, the compiled object is empty and we don't need to link it in. | |||
2011-11-05 | precompiled_basegfx.hxx is empty, so don't include it. | Joseph Powers | |
2011-11-05 | Cleanup basegfx headers a little | Joseph Powers | |
I deleted some unused headers. I also stopped exporting them for the same reason. | |||
2011-11-03 | Fix one more subtlety around B2IBox / B2IRange changes. | Thorsten Behrens | |
The Cohen/Sutherland clip flag routine was not aware of B2IBox, thusly yielding incorrect line clipping for BitmapDevice software rendering. Cleaned that up, added some more unit tests around the problem, and removed the now-extraneous maLineClip member from the bitmap device. | |||
2011-11-02 | Move BitmapDevice to use B2IBox instead of B2IRange. | Thorsten Behrens | |
Semantically, B2IBox represents a pixel rect much better than B2IRange - replaced all occurences in and around the software renderer, and client code. | |||
2011-11-02 | Cleanup basegfx - docs, visibility, pointless methods. | Thorsten Behrens | |
Added docs to the range/* classes, removed methods the compiler can generate for us, removed unused header, and cleaned up visibility markup (inlines don't really need to be exported). | |||
2011-11-02 | Fix BXYBox behaviour and unit test | Thorsten Behrens | |
Made the distinction more clear, added appropriate tests to nail behaviour. | |||
2011-10-20 | Use -Wno-array-bounds only on gcc versions (4.3..4.4.3) | Tor Lillqvist | |
2011-10-20 | WaE: Work around bogus array subscript is above array bounds | Tor Lillqvist | |
Bites at least with the Android cross-gcc 4.4.3. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41847 | |||
2011-10-05 | simplfy dmake to gbuild bridgefile | Bjoern Michaelsen | |
2011-09-30 | add mode-lines to .m files and last round of merged files, etc. | Caolán McNamara | |
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | |
2011-09-21 | OSL_TRACE: Remove trailing newlines | Thomas Arnhold | |
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines |