- 06 May, 2014 40 kayıt (commit)
-
-
Jacobo Aragunde Pérez yazdı
Change-Id: Ia940f4adc13df3a8a6df80ca4ed4f395a5f9c089
-
Tor Lillqvist yazdı
Change-Id: I3ac2f0bf676491231bcd60eb91e8a36bc6c00620 Signed-off-by:
Stephan Bergmann <sbergman@redhat.com>
-
Eike Rathke yazdı
This effectively behaves now like a singleton. Change-Id: Ib7a455a423f247267358d819e13d285428fe3aa8
-
Stephan Bergmann yazdı
...as most parts of VCL. Ran across at least one case where a remote call to framework::CloseDispatcher::release -> ~CloseDispatcher -> ~EventPoster -> Application::RemoveUserEvent caused a crash. As always with SolarMutex, keep fingers crossed that this is about the right level to acquire it. Change-Id: I8f4be7329adbf72355774fa5d3c472270da3ddd2
-
Jacobo Aragunde Pérez yazdı
Camera options in shape 3D effects can have rotation settings like in the following example: <a:camera prst="perspectiveRelaxedModerately" zoom="150000"> <a:rot lat="19490639" lon="0" rev="12900001"/> </a:camera> This patch preserves the a:rot tag and its attributes using the shape grab bag. We created the class Scene3DRotationPropertiesContext to be piled on top of a Scene3DPropertiesContext and process the contents of the child item. It also adds a unit test for this case. Change-Id: Id6bf58ad05fe5b49061619b6750ed0658badc9af
-
Jacobo Aragunde Pérez yazdı
Shapes can contain 3D effects like in the following example: <a:scene3d> <a:camera prst="isometricLeftDown" zoom="150000"/> <a:lightRig rig="threePt" dir="t"/> </a:scene3d> This patch preserves the a:camera tag and its attributes using the shape grab bag. It also adds a unit test for this case. Change-Id: Ic6a78031d2e1fb84a2bacd97b5cc9c55d9dbaa95
-
Jacobo Aragunde Pérez yazdı
Code for these two classes was already present but it was commented out or left outside of the build system because it didn't even compile. I've brought it back and made it compile, but it has no use yet. The goal is using it to preserve 3D transformations. At scene3dcontext.cxx I removed the text chunks found in the middle of the source and corrected some mistakes; I also modified the conversion of "fov" attribute. At shape3dproperties.hxx I removed all the struct members because they seemed to have been copied&pasted from another file, and added only those members that made sense. Removed useless function definitions. Change-Id: I2c00ea638e1a4fb1a3820bc4c322488296d3e6d7
-
Jacobo Aragunde Pérez yazdı
The cell property w:shd was not being properly preserved when the shade value was different from "clear". The shading affects the cell color and the exporter was not taking that into account when comparing the cell color with the original color to know if the user had changed it. Besides, we were not preserving the attributes themeColor, themeTint and themeShade. I have modified the existing unit test testTableThemePreservation to add a check for those new attributes. Change-Id: I06d2e668486803cba039eacb717a69413bd5a1df
-
Eike Rathke yazdı
Change-Id: I66a9d45089039c332b3fe7e279a27b81f8bb4aea
-
Eike Rathke yazdı
Change-Id: I82eec52b3ee30dfbdb87469cb8f0b14c4fc777cf
-
Eike Rathke yazdı
Change-Id: I89dc5d25b37169ebc1581ebf957d33dd7b0e204c
-
Stephan Bergmann yazdı
Change-Id: I64cfb93b5fcf27a7faff71ca2b4ab8795f46a3b2
-
Eike Rathke yazdı
Change-Id: I64fba0071523af67eef72a4b92970cd7052b5c2e
-
Tor Lillqvist yazdı
Change-Id: I66e443b5b641aaf16e1918f139a6b6a173ef7d4c
-
Stephan Bergmann yazdı
...and never overridden, so can be removed along with the dead SVX_EVENT_COLUM_WINDOW_EXECUTE code that calls them. Change-Id: Ie500066c083f8fbf649c64f2d61fb85901473b5c
-
Miklos Vajna yazdı
Regression from commit f5ccbfdc (oox customshapepreset: switch to generated data -> code, 2014-04-17). Change-Id: I2106271e2f43e7936237628e47cd4e01ab34441c
-
Tor Lillqvist yazdı
Change-Id: I8bd81a45f5ef1b76fce1563b06e05a4eefcff0ec
-
Tor Lillqvist yazdı
Change-Id: I084cbab30dfb0a7d567d1b172a79320687d20a06
-
Tor Lillqvist yazdı
Change-Id: I2a9807640ef25e30ea34aa017cf02221f355153f
-
Tor Lillqvist yazdı
Change-Id: Ib735e6566981232fec8b13c81a2de11a6b21dfe7
-
Markus Mohrhard yazdı
Change-Id: Id31caa16dfe0d0f23cf07589053233e9b311d02f
-
Stephan Bergmann yazdı
Change-Id: I1d7221142b8f52672ea96cfe42e1e71c8e39c416
-
Stephan Bergmann yazdı
...at least since f74efe63 "callcatcher: remove newly unused code." Change-Id: I2d988525e0b82c87b2bae1f669333d0849dbee49
-
Noel Grandin yazdı
Change-Id: Ifa15f4ed3107b1075b504f09d2cae69ee38d347a
-
Stephan Bergmann yazdı
...at least since f74efe63 "callcatcher: remove newly unused code." Change-Id: I7067e9e6af6693c1401510e2de196533d6963cb2
-
Ariel Constenla-Haile yazdı
(cherry picked from commit a7389203) Conflicts: odk/examples/cpp/complextoolbarcontrols/Makefile Change-Id: I28af30dc04068c670d31be7494b7ce9a7a25c3a3
-
Ariel Constenla-Haile yazdı
(cherry picked from commit 1307f094)
-
Michael Stahl yazdı
Change-Id: I7fb61144d8ff263e97de8cb7088b9eefdaafe52f
-
Stephan Bergmann yazdı
...which is explicitly supported by Boost.Container though, but we cannot use boost::container::map here as Boost.Container is only available since Boost 1.48 and our base is 1.47 still. However, there appears no need for Children to be sorted, and std::unordered_map (and thus boost::unordered_map) requires that pointers to elements are not invalidated by insertions, which we do require. Change-Id: I70ad6f40318d2bafae53ebb67d84c1c89a7d68f6
-
Ravindra Vidhate yazdı
The margin of the floating table from top of the page is not being preserved correctly and it also get increased. The w:tblpPr tag is also not preserved. Reviewed on: https://gerrit.libreoffice.org/9185 Change-Id: I8a27a4bab94a1afd27a7ba49ca55ff014918fffc
-
Tor Lillqvist yazdı
Change-Id: I22368254727d1b78337cce42425e27fc7e2588c4
-
Tor Lillqvist yazdı
Change-Id: Iad9c5270e90c7492598764038ad278309da73091
-
Markus Mohrhard yazdı
Change-Id: I9933a429f42f8a350a88aa77514f934560ed58f3
-
Noel Grandin yazdı
Look for code like: xxx ? true : yyy; Which can be simplified to: xxx || yyy Change-Id: Ib7ca86580bfd0cf04674328a3c0cf3747de4758d
-
Julien Nabet yazdı
Change-Id: I093ef950f7097021dec3b829d4e11e7b20fc9292
-
Julien Nabet yazdı
Change-Id: Id5ae0cf42aa8d6ed464eb1149ebdd172a284a75f
-
Markus Mohrhard yazdı
Change-Id: Icd2d219446cdf78c4be97f96e38c9e4b174f9ddd
-
xukai yazdı
Change-Id: Icee44999c175b5d964ebd51c56e9a1585506e036
-
xukai yazdı
Change-Id: I16bb4ec77cccf0ff9e73f02e13288562004eb5bc
-
xukai yazdı
Change-Id: I894cbb42b795f1adee41694011fa2477f87850f0
-