- 03 Kas, 2015 18 kayıt (commit)
-
-
Oliver Specht yazdı
Current implementation does not support interactive frame insertion that moves the table into the frame Change-Id: I57a69f680f1218bd3014da494d41542ad0b72dd1 Reviewed-on: https://gerrit.libreoffice.org/19157Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Oliver Specht <oliver.specht@cib.de> Reviewed-on: https://gerrit.libreoffice.org/19675Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> (cherry picked from commit 27828725)
-
Stephan Bergmann yazdı
when the change is made, not during exit (as did 4aab13f7 "tdf#93509: crash on storing auto correction config fixed," which caused PythonTest_sw_python to crash during exit) (cherry picked from commit fc7df6f9) Conflicts: sw/source/uibase/app/swdll.cxx Change-Id: I0e9c264ae3fee7fdb732d36f42ebbb477557a644 Reviewed-on: https://gerrit.libreoffice.org/19673Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Oliver Specht <oliver.specht@cib.de> (cherry picked from commit 61693775)
-
Tomaž Vajngerl yazdı
(cherry picked from commit 93a007b1) Change-Id: I72056f3e167923f00c37648a24190b533eb9b471 Reviewed-on: https://gerrit.libreoffice.org/19655Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> (cherry picked from commit d36d2d68)
-
Michael Stahl yazdı
The early return must also be taken if the anchor is neither AT_CHAR nor AT_PARA. (regression from a219bbb6) Change-Id: I4eccb1f80401ba620ef87342f40c1a896918f3d3 (cherry picked from commit 9092f96c) Reviewed-on: https://gerrit.libreoffice.org/19649Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> (cherry picked from commit ae846d08)
-
Aybuke Ozdemir yazdı
Change-Id: I8995ef12edb64c14788ba3a2c3c1c2ceb3775b11 (cherry picked from commit 9b322ace) Reviewed-on: https://gerrit.libreoffice.org/19642Reviewed-by:
Katarina Behrens <Katarina.Behrens@cib.de> Tested-by:
Katarina Behrens <Katarina.Behrens@cib.de> (cherry picked from commit 813b11a9)
-
Andras Timar yazdı
Change-Id: Idfe91c87631956072f1e44d09168de6cd91aed6b
-
Miklos Vajna yazdı
In case the logic visible area is known, info is provided only about the visible headers. Given that only relative sizes (no absolute positions) are provided, a placeholder row/col is added to the result that contains the total size of the skipped items. These placeholder items are not needed when providing all headers, so don't emit them. Change-Id: I48ccb73554313f4d2bb420e4402995719b0f9f7d (cherry picked from commit 788cec0a)
-
Miklos Vajna yazdı
Change-Id: Iacd8f11917e929c6a1579c6a1553eb7840df5fba (cherry picked from commit 0fe622f6)
-
Miklos Vajna yazdı
So that for large documents it's not needed to query all of them on load, but (similar to tiled rendering itself) it's possible to query the data that affects the visible area. One catch is that the row sizes are relative, so there is a placeholder row in case the visible area is not the top left corner, and constructing its size needs special care. Normally the handed out twip values have to be floored after twip->px conversion, but this one is already rounded (as the total is a sum of px values, again becase of the previous floor rule), so need to play the +0.5 trick to allow clients always just flooring the logic conversion result they get. (cherry picked from commit 75303695) Conflicts: libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx sc/inc/docuno.hxx Change-Id: I64a155582acdee7b2acc741d77a2c462409b91a8
-
Miklos Vajna yazdı
Old situation was (96 DPI, 100% zoom): 0.06669 factor, 1088 pixels, result is 16311 twips (1087.4 pixels). New situation is: 0.066669 factor, 1088 pixels, result is 16319 twips (1087.93 pixels). Change-Id: I0ff11520fd719aefd2b351a6d4ef949d66b66282 (cherry picked from commit cce7d78b)
-
Miklos Vajna yazdı
Change-Id: Icb9a40c5ded676ff3f8f7db198a90bb94540bdf4 (cherry picked from commit a2141e39)
-
Miklos Vajna yazdı
There were two problems here: 1) ScTabView::getRowColumnHeaders() did not expose twip values directly, but used ScRow/ColBar::GetEntrySize(), which does a twip -> pixel conversion, and then converted it back to twip. Avoid this unnecessary roundtrip. 2) ScViewData::ToPixel() trunaces the resulting float to an integer, so if the result is e.g. 67.7 pixels, then Calc handled that as 67, but gtktiledviewer rounded that up to 68, resulting in non-matching headers for the rendered tiles. (cherry picked from commit 861b28b8) Conflicts: libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx Change-Id: Ie6ed1ea923a423d1526eeb235b7b87106fd2f20b
-
Miklos Vajna yazdı
As that's the unit we use everywhere else in the LOK API. Also, make the ScGlobal::nScreenPPTX/Y calculation more precise, otherwise rounding errors occur during the pixel -> twip conversion. Example with the old precision: col height is 103 px, nScreenPPTY is 0.067, twips is 1537.3134328358208, convering it back is 102.487562189 px. Example with the new precision: col height is 103 px, nScreenPPTY is 0.0667, twips is 1544.2278860569716, convering it back is 102.948525737 px. (cherry picked from commit 708d1c5a) Conflicts: libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx Change-Id: I19f5285508ef0c751614d07969b3a7a037e7d1ec
-
Miklos Vajna yazdı
Change-Id: I6b4f6eacde84433fa3865e62c692a3f97895b887 (cherry picked from commit 3bdce53c)
-
Miklos Vajna yazdı
Change-Id: Id7db9fa9b451dcf2423142b38c2c12b369e16fae (cherry picked from commit ac47e575)
-
Miklos Vajna yazdı
Only the row info and for the entire tiled rendering area as a start. (cherry picked from commit a7ce5f83) Conflicts: sc/inc/docuno.hxx Change-Id: Idbccd805b355e8d151ab7025ac1cf0c686cb237b
-
Miklos Vajna yazdı
It's cleaner to let the apps do this themselves than exposing their underlying vcl::Window. (cherry picked from commit bfd79be4) Conflicts: sc/inc/docuno.hxx sd/source/ui/inc/unomodel.hxx sw/inc/unotxdoc.hxx Change-Id: Iff2442dd325fa65a0cf3ad4aa7f918542dab1e4c
-
Jan Holesovsky yazdı
Posting of the .uno:Something commands is asynchronous. To be able to find out when eg. .uno:Save finished, this commit introduces a callback that fires when that happens. To be able to receive such a notification, the appropriate postUnoCommand() must be called with 'true' as the parameter for bNotifyWhenFinished (defaults to 'false'). (cherry picked from commit 8c987fab) Change-Id: I254939ebc8ea5f309ae39686dcaaeddd5148b0c9
-
- 02 Kas, 2015 15 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: I6971a7c4f5f230dc6ac01c91e4183c24f847e061
-
Andras Timar yazdı
Change-Id: I0421b032a1da1692871673c550a42f35c75f6bdb
-
Andras Timar yazdı
- added EULA (sla.r) in special OS X resource fork format - added volume icon which does not work ATM, TODO later - new dmg background image and adjusted .DS_Store - fixes to tolerate space in app bundle name Change-Id: I3f341bfcd5bea88681e57b314f6069be107c5c2b
-
Andras Timar yazdı
Change-Id: Ie62c6a98563261e3601be70ff5eff6603b625445
-
Andras Timar yazdı
Change-Id: I52dd21c50942d2c7d6dff2f3c2ae3577e2bb9c65
-
Andras Timar yazdı
Change-Id: I0155372c8e5cd0eb91bfbea304190502cbf32e3c
-
Tomaž Vajngerl yazdı
Change-Id: I86ad5eefd70bc8b768780cac66ca466aa0926dc4 (cherry picked from commit 74463457)
-
Tomaž Vajngerl yazdı
Change-Id: I2435e8ce93383a1a40996a81ef65c1823606609a (cherry picked from commit d38abe1d)
-
Tomaž Vajngerl yazdı
Change-Id: I49be19b273d0c263637369e9b095f374b345191b (cherry picked from commit 37d41674)
-
Tomaž Vajngerl yazdı
Change-Id: I1514aa7a3fbab682b0d282ba0f504470943d7e4a (cherry picked from commit 9a52bad4)
-
Tomaž Vajngerl yazdı
Change-Id: Ia2b9a812717d05c7d98d47bf0fe5fd293029d045 (cherry picked from commit 6d9124de)
-
Tomaž Vajngerl yazdı
Change-Id: Ia9e33704cfffd2094606e6fd166796bd8cd5d4fe (cherry picked from commit 3d345941)
-
Tomaž Vajngerl yazdı
Improves tile rendering speed. Change-Id: I6a4b87fbc1d9ed284f5c4a781d769eeacd9bc2ca (cherry picked from commit e0d68da3)
-
Tomaž Vajngerl yazdı
Change-Id: I6468a5cf66715516764c779ecc080fb2c1bd7382 (cherry picked from commit 50ffbe85)
-
Tomaž Vajngerl yazdı
Change-Id: Ib487d4f948dde2027bebc914bb3fe43b55c6d50b (cherry picked from commit f70254ca)
-
- 30 Eki, 2015 1 kayıt (commit)
-
-
Jan Holesovsky yazdı
With an empty document, GetPrintArea() returned false, causing nothing visible on the screen. Also increase the values when I'm touching this. Change-Id: Iee7544a428d5d4d5d5931230a51e605302557f41
-
- 29 Eki, 2015 6 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: I29be97c1a0e783abcf24720a7c5bc6c832e78eb3
-
Marco Cecchetti yazdı
Now the default for using the SVG tiny profile is false. Now the default for use native text decoration is true. Fixed the following issues: 1) Text decoration (underline, strike-out) was not exported. 2) Commit 0a4e9138 (tdf#56467: improve export of formulas to SVG) had a side effect: all exported text portions have position attributes (x,y) even if they are on the same line (y_old == y_new): this caused that underlined text belonging to 2 different `tspan` element was not underlined by a continuous line but there was a gap where a `tspan` ended and the next `tspan` started. 3) In commit (tdf#37650: further improvement of svg export) StartTextShape method is invoked even when positioned characters are used but the `implWriteText` method always adds a `text` element by itself so there is no need to call StartTextShape. The changes for non-positioned characters have been embedded inside the `WriteTextPortion` method. Change-Id: Iee0d6a6816dcbd2d97f2fbdf969f012de678604e Reviewed-on: https://gerrit.libreoffice.org/19672Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Jan Holesovsky <kendy@collabora.com>
-
Mihai Varga yazdı
Change-Id: I2e2ebc5a12794e9641a6195f07fa4b2d1a7369a9
-
Mihai Varga yazdı
This is used to know the current font/back color Change-Id: Ic524fcb5c26e1c15ec9c50b2879465152ac8ee34
-
Julien Nabet yazdı
Don't disable "Insert table" option in case of Ole object Change-Id: Ibe87d35db320f4a9d5c971e3f7b25199fcacbde4 Reviewed-on: https://gerrit.libreoffice.org/18897Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Katarina Behrens <Katarina.Behrens@cib.de> (cherry picked from commit 2135b4a8) Reviewed-on: https://gerrit.libreoffice.org/19067 (cherry picked from commit 53b8f63d)
-
Jan-Marek Glogowski yazdı
But you can use SAL_OVERRIDE instead. Change-Id: Id593aa5f734b291043dee58f0e5ac6ff8ee421ea Reviewed-on: https://gerrit.libreoffice.org/19653Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Michael Stahl <mstahl@redhat.com> (cherry picked from commit fc3044ce)
-