- 25 Haz, 2014 40 kayıt (commit)
-
-
Zolnai Tamás yazdı
Touch only the configure but not the configure.ac Change-Id: Iee93036f2378f29530ffae9be8b4324e8425d2ec
-
Zolnai Tamás yazdı
Change-Id: Idcab012af9c27c4fed31c07ce230816d1c61d605
-
Zolnai Tamás yazdı
Change-Id: Ide01491460c9c81ed044be762c7dd07e8a5ca575
-
Zolnai Tamás yazdı
Change-Id: I2b7869c6c14b69732db864a03a2d9b6638424cf7
-
Michael Stahl yazdı
Change-Id: Idbb776de489e0c6e6ae14cb65907ac75cfca3851
-
Noel Grandin yazdı
Fix regressions introduced with 6a043e9c "Use the new type-checking Reference constructor to reduce code noise" Change-Id: I85662856f21c810a7db497fe3b0e116f075b1687 Signed-off-by:
Stephan Bergmann <sbergman@redhat.com>
-
Michael Stahl yazdı
Change-Id: I8dde439d19be45d5039904b6e917b17ca0ee4758
-
Michael Stahl yazdı
Change-Id: I8570511be7c1d6de94ee82e18bad5b00b36d99bb
-
Michael Stahl yazdı
Change-Id: Id144a483fe5576cdd546ac5da87890dc61f964b3
-
Bjoern Michaelsen yazdı
Change-Id: I647e969bfc9f8b4294d3e526d8d5b11df7d7bea9
-
Bjoern Michaelsen yazdı
Change-Id: I3165f84d44c74bca3a2d75ebf3cd681b9d5d120a
-
Bjoern Michaelsen yazdı
Change-Id: I4840d694954a5c0419abfa4c0fbe67b756f8253c
-
Miklos Vajna yazdı
The intention was to have a container where it's fast to look elements up, and list is a linked list, so it doesn't fit. Change-Id: I3196c8dee96ecd4a6f464b74fd5141b27f1773b8
-
Caolán McNamara yazdı
Change-Id: I33f06887b4b2b7950c6e322ccf1c7ec65240f9b0
-
Andrzej Hunt yazdı
Change-Id: Iacd8554698f309f79208fd8390800ae2c5fd8085
-
Andrzej Hunt yazdı
Change-Id: I90daddddb08c26c594109ecf926cb4ea64308770
-
Zolnai Tamás yazdı
Building: - The new tarball has reasonable build system so build libgltf as external package instead of compiling source files directly. - Freetype dependancy is removed Improvements comes with the new libgltf - Can rotate the models too (orbit mode) - Two camera handling mode: walkthrough and orbit (press M to change). - gltf_animation_set_time() works - FPS can be displayed without freetype (press F) Additional notes: - There were some bugs/regressions which are fixed during the integration (see patches). - License files are uddated now. - libgltf building is enabled only on those platforms on which gltf support actually works (windows and linux) Change-Id: Ia6c9c4da53a9b4fedba0d73aa5791489f8ad424b Reviewed-on: https://gerrit.libreoffice.org/9895Reviewed-by:
Zolnai Tamás <zolnaitamas2000@gmail.com> Tested-by:
Zolnai Tamás <zolnaitamas2000@gmail.com>
-
Luboš Luňák yazdı
This commit also does the conversion when reading the data from a data source using the mail merge wizard. Change-Id: Ia14417507b6ddce955fec26142a42ce51f77de4e
-
Michael Stahl yazdı
Change-Id: I002a14fe0cb0cbdb4d5da51db8da6c8208cf604e
-
Michael Stahl yazdı
Change-Id: I98d2fc7de3c2d3f95fb96192da83761ac1146172
-
Michael Stahl yazdı
Change-Id: I5c7c1d888cda7f01685bce46a6092a2c30b856f9
-
Michael Stahl yazdı
Change-Id: Ica1291e8d115ae7a7f1e99e569c9889e2b852f8a
-
Michael Stahl yazdı
Change-Id: I66fc14d1f26da0c91a455b0f63bde31210566c2c
-
Michael Stahl yazdı
Change-Id: I37220af64c15259ab5bcf61b324d2a73ed8f5348
-
Michael Stahl yazdı
Apparently some time before inital CVS import a global search-and-replace went horribly wrong and added spurious namespace prefixes everywhere. Change-Id: I4009bc3ab4b1d4c80412f75ad0e4628a382f99f0
-
Miklos Vajna yazdı
Change-Id: If1b3e9807414e90341199eabfa937376084c097d
-
Andrzej Hunt yazdı
As per Repository.mk, we only have this on linux AND headless. Change-Id: I708c89e38a661afb839ab1ac3e48ff9b2ecc040c
-
Andrzej Hunt yazdı
Change-Id: I72fc636b1187bc99370b43927b25ed6fb89fe8f3
-
Caolán McNamara yazdı
i.e. as far as I can see the bug came about during.... commit 74cb1c4c Author: Ivo Hinkelmann <ihi@openoffice.org> Date: Tue Nov 14 12:37:46 2006 +0000 with 2006/10/27 12:14:08 aw 1.2.1208.5: #i39528# ::basegfx -> basegfx adaption in - Vector2D aFullVec(aStartPos - aEndPos); - Vector2D aOldVec(Vector2D(aRect.Left(), aCenter.Y()) - aRect.TopLeft()); ^^^^^^^^^^^ - double fFullLen = aFullVec.GetLength(); - double fOldLen = aOldVec.GetLength(); - double fNewBorder = (fFullLen * 100.0) / fOldLen; - sal_Int32 nNewBorder = 100 - (sal_Int32)(fNewBorder + 0.5); + basegfx::B2DVector aFullVec(aStartPos - aEndPos); + const basegfx::B2DPoint aTopLeft(aRange.getMinX(), aRange.getMinY()); + const basegfx::B2DPoint aCenterLeft(aRange.getMinX(), aRange.getHeight()); ^^^^^^^^^^^^^^^^^^ + const basegfx::B2DVector aOldVec(aCenterLeft - aTopLeft); + const double fFullLen(aFullVec.getLength()); + const double fOldLen(aOldVec.getLength()); + const double fNewBorder((fFullLen * 100.0) / fOldLen); + sal_Int32 nNewBorder(100L - FRound(fNewBorder)); Change-Id: I840caa5e49a04f9b6460c4fa8e3731f3e5ebde05
-
Andrzej Hunt yazdı
Otherwise lock files etc. aren't cleaned up, which isn't particularly nice should when then opening the file in normal LibreOffice. Change-Id: I822b6fb582473674371a4c1d403d5a05adb7ea6b
-
Andrzej Hunt yazdı
Change-Id: I33ae83a97be254a3d3716bd9ae05f089845fd536
-
Andrzej Hunt yazdı
Change-Id: I902f3a134b4a7dcc721eff3f67376014a4276885
-
Andrzej Hunt yazdı
Otherwise we get segfaults in cppu::idefaultConstructElements when exiting, in addition to complaints of: ignoring GError "Operation not supported" for <***RECURSION DETECTED***/log.txt> Change-Id: If2f56873f50ba957288d1e5591db967d248ee7a4
-
Andrzej Hunt yazdı
(No real implementation yet.) Change-Id: I67b84b554dbb29db449d8c190ef816645a8bff07
-
Andrzej Hunt yazdı
Means that no changes should be required here once calc/impress/draw support tiled rendering. Change-Id: I0987d94303f39ba37e29b9ae7b2276e82dc0ccbf
-
Andrzej Hunt yazdı
We want to have a simple interface that allows access to tiled rendering without digging into the internals of writer (and in the future calc/impress/draw). Change-Id: Ia9c278a48c919333186e5361ff25bb1ab603b846
-
Andrzej Hunt yazdı
Change-Id: I6cf810af55284cb6ddd9e0bfd879fd19508d127a
-
Andrzej Hunt yazdı
Seems to be a gtk bug which we need to work around. The assertions don't actually seem to cause any harm (they just print a bunch of "Gtk-CRITICAL **: IA__gtk_range_get_adjustment: assertion `GTK_IS_RANGE (range)' failed" but probably best to avoid them. Change-Id: I5d1bb20bd5c0569c6d023a6148123208a15b9de2
-
Andrzej Hunt yazdı
desktop is no longer the right place for it now that libreofficekit has its own directory. Change-Id: I207f1d642e7e35c460ff85bb57aa142cb98023c8
-
Andrzej Hunt yazdı
MakeVisible only scrolls the view, so parts of the tile to be rendered might be outside the SwView's visible area, and therefore not painted. This however makes the background window (shown for the tilederendering app) unuseable (but that window is invisible for all practical uses of tiled rendering, and hence probably not a problem). Change-Id: I6c3c2846906163b362f7cff6d8c7ba308a58a7ad
-