- 19 Mar, 2014 40 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I605a8c7f0dc1519a70db1fc6d6dd9acff32e3bd5
-
Caolán McNamara yazdı
Change-Id: Ie7ab3fa80cb7231cee1f741f53af541633fa427e
-
Caolán McNamara yazdı
Change-Id: I3e2ad2d3dd1713336b1a01cb7a2b1ff28bb833ea
-
Caolán McNamara yazdı
Change-Id: I7d180e0386d50f0a943b68494a9458016a6a51a4
-
Caolán McNamara yazdı
Change-Id: Icd1922a47ea3b59bdec0ef21481df5f4a969a4e0
-
Caolán McNamara yazdı
Change-Id: I83b2335ffe215c36d5d69bec7489f8f025d6b930
-
Caolán McNamara yazdı
Change-Id: I466c795b53a0e9b9f282ff225134d2f6e2edf52c
-
Caolán McNamara yazdı
Change-Id: I454f350863a540c2e686550e3e7ff16b3a33ba19
-
Caolán McNamara yazdı
Change-Id: I40b98b73f38c384625e3d2187684cc070fb57334
-
Caolán McNamara yazdı
Change-Id: I6f2f6fce9361c26775561539c63725abfb72b25e
-
Caolán McNamara yazdı
Change-Id: I3b26473c6af7426b28818a4fa73f27295408acc3
-
Caolán McNamara yazdı
Change-Id: If26b47fa8c2888e4fe7a5b45c4659c5c66e1461b
-
Oliver-Rainer Wittmann yazdı
of a set of paragraph which have more than one different List Style applied create a new List Style and put the paragraphs into a new list. (cherry picked from commit 0087ca89) Conflicts: sw/inc/doc.hxx sw/inc/docsh.hxx sw/inc/editsh.hxx sw/source/core/doc/docnum.cxx sw/source/core/docnode/ndcopy.cxx sw/source/core/edit/autofmt.cxx sw/source/core/edit/ednumber.cxx sw/source/core/uibase/app/docst.cxx sw/source/core/uibase/docvw/edtwin.cxx sw/source/core/uibase/inc/textsh.hxx sw/source/core/uibase/shells/listsh.cxx sw/source/core/uibase/shells/textsh1.cxx sw/source/core/uibase/shells/txtnum.cxx sw/source/core/uibase/uiview/formatclipboard.cxx sw/source/core/uibase/uiview/view2.cxx sw/source/core/uibase/wrtsh/wrtsh1.cxx sw/source/core/undo/unnum.cxx sw/source/core/unocore/unocrsrhelper.cxx sw/source/filter/ww1/fltshell.cxx sw/source/ui/misc/num.cxx Change-Id: Iadb5b386cada296d90d96aa75574024baac7ae3e
-
Sourav yazdı
There are two issues that are handled in this fix. 1)File created in MSO2K10 on RT gets corrupted.The root cause is found in CustomShapeProperties::pushToPropSet 2)File created in MSO2K7 on RT gets corrupted.There is an issue in shape import <a:gd> values for any shape (ex. circular arrow, hexagon etc).LO cannot import right <a:gd> values for any shape which is created in MSO-2007.Due to missing values of <a:gd> tag, after roundtrip the file gets corrupted.To avoid corruption a check introduced:- if(aAdjustments.size() == nLength) after http://opengrok.libreoffice.org/xref/core/oox/source/export/drawingml.cxx#1784 that will verify the number of <a:gd> tags associated with the shape during import and the number of <a:gd> tags during export.If there is a mismatch <a:gd> willnot be written.Changes made in DrawingML::WritePresetShape. I have written 2 test cases for the same. Conflicts: sw/qa/extras/ooxmlexport/ooxmlexport.cxx Reviewed on: https://gerrit.libreoffice.org/8657 Change-Id: Ibb1e2dc1c098b7399c06d7b4f59fac4e80887062
-
Tor Lillqvist yazdı
Change-Id: Ia7d3b7e319f2a568120add15ef05915a98fe6696
-
Tor Lillqvist yazdı
Probably a relic from the past, when people tried to avoid changing public headers incompatibly to avoid causing recompilations for their colleagues... We are long past such concerns. The talk about "extensions" in the comment is most likely obsolete. Change-Id: If90ca02685bf82ed529becb715b4c614287fdc57
-
Pallavi Jadhav yazdı
Issue : DOCX containing nested Hyperlinks, have mismatch xml tags. End tag for outer Hyperlinks does not get closed. Implementation : 1] Added code at Export side to maintain Count of Hyperlinks started and ended. Added check endParagraph() to to close Hyperlink tag if not yet closed but started. 2] Written Export Unit Test case. NOTE : Corruption was occurring on "Without debug-util" build and Crash was occurring on "WITH debug-util build". Reviewed on: https://gerrit.libreoffice.org/8654 Change-Id: I9a0ab48578f3d5f4a13c615f4e42a69e790d3ced
-
Bjoern Michaelsen yazdı
Change-Id: I92b4c1be5d8e051a4d716900bcc5dd7bb621017b Reviewed-on: https://gerrit.libreoffice.org/8658Reviewed-by:
Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by:
Björn Michaelsen <bjoern.michaelsen@canonical.com>
-
Miklos Vajna yazdı
Change-Id: I26d27bfaafb83ee3ae74ce64bf72146b157ed7db
-
Rohit Deshmukh yazdı
Reviewed on: https://gerrit.libreoffice.org/8623 Change-Id: I042eeb0829c55d6a0fd5d85c1712c7b1cddc8c96
-
Thomas Arnhold yazdı
-
Jan Holesovsky yazdı
Change-Id: Ida89284c00946d3972c4e45a5453ccfdff99713f
-
Jan Holesovsky yazdı
Change-Id: I3e8370fdfed58afe0c253410465219cce3065808
-
Chris Sherlock yazdı
Currently we work out the number of gradient steps based on the type of class that is being used. We calculate the number differntly for printers. However, we should let the Printers class work this out. Also, the function is very long - I have moved most of the calculation logic to it's own function. Made some very small formatting changes to outdev.hxx. Change-Id: I91b8787d885c1c8d2aa2205f25e5c7f82607c0ea Reviewed-on: https://gerrit.libreoffice.org/8586Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Niklas Johansson yazdı
The IA2-integration added some special cases for calculating textbounds for attributeruns when automatic spellchecking is active. This does not seem to effect linux but messes up accessibility on mac. This patch removes the special cases avoids the problem on Mac. When daily builds gets available for Windows I will do some testing there to see if I can find any problems. Change-Id: I203da4fe1c6e5d4915d19e1704073e58f8aa88c9 Reviewed-on: https://gerrit.libreoffice.org/8591Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Stephan Bergmann yazdı
(for testing purposes, mainly) Change-Id: I50d3c92b9ac0cc9dda55b7340f657acb74f675f6
-
Stephan Bergmann yazdı
...in the spirit of 3e70e26c "gbuild: fix over- evaluation in gb_ExternalExecutable__set_internal" Change-Id: I3d5859bd3437cc050250e66d723d3dee3056ef46
-
Isamu Mogi yazdı
UTF-8 no-break space causes C4819 warning in MSVC with CP932. Change-Id: I83a6ea6d060d132d21d8ea3141051f850d0e6bd2 Reviewed-on: https://gerrit.libreoffice.org/8628Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Stephan Bergmann yazdı
...in the spirit of 3e70e26c "gbuild: fix over- evaluation in gb_ExternalExecutable__set_internal" Change-Id: I43ff930267cfd3cc537e79c41a8b4167fd5c77d3
-
Miklos Vajna yazdı
Regression from commit 75934fc1 (VML import: handle shape with text inside groupshape as TextShape, 2014-01-17), the problem was that TextShape is also a kind of rectangle, so that shouldn't be used for all shape with text in groupshapes, just for v:rect elements. This fix gives the required text wrapping for the referenced bugdoc without turning the rest of the shapes into rectangles. Change-Id: I6e343c65a869e335b641728adbc7984ee85377b5
-
Stephan Bergmann yazdı
Change-Id: I55fdcdfb25a2d6456eff044eb4af8fa00905d6e8
-
Stephan Bergmann yazdı
Change-Id: I0cbb49b29f0b1ee69f342d14d4560924e7bc5d11
-
Stephan Bergmann yazdı
Change-Id: If08dab3956da5c0ee90d6a788f6f34a936e792d7
-
Stephan Bergmann yazdı
Change-Id: Ica2736fd9e249bfa88cfd8fd094af83deadf7737
-
Noel Grandin yazdı
Change-Id: I73acb3a150b01114d32274a6842f6db9654b3e63
-
Noel Grandin yazdı
Change-Id: Ief810c49b821e2e60ee2c8b14187dd8d7d81c461
-
Noel Grandin yazdı
Change-Id: Ia8470bbd04c841e6c44c182493fede3dc312f635
-
Noel Grandin yazdı
Convert code like: rTxt.match( "---", rTxt.getLength()-3 ) to: rTxt.endsWith( "---" ) Change-Id: Iada74c5e714f7234f25b326526843a36255d5599
-
Noel Grandin yazdı
so it matches all of the other endsWith* methods Change-Id: If6a37056b1225675848434bfb3520e6c496f22e5
-
Tor Lillqvist yazdı
Change-Id: I8e489354fab78e2dff35ecaca80375640c75a68d
-