summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-09GetBasic and m_pBasic are unusedCaolán McNamara
which is probably a good thing because it is zeroed in the copy ctor which looks rather dubious Change-Id: Ia082601982aaea5df92cf7aa9724cbe187716e0c
2013-12-09drawingml import: handle w:b (found in docx groupshape textboxes)Miklos Vajna
Change-Id: I105d068a6b8d454fac963cd30f6f812cf2b96170
2013-12-09drawingml import: handle wps:bodyPr inside a groupshapeMiklos Vajna
Change-Id: I1f059ae653ab13a7c867f77b2b1b4265e9e71b4e
2013-12-09Fix error in commentTor Lillqvist
Change-Id: I636da8b596e984ecadd13e5fe6a5b9a843ba3a81
2013-12-09fdo#69027 check for state_.top().lockedAndras Timar
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>: I wonder why I originally introduced State::locked in addition to State:ignored in the first place, but can't find a good reason for that now. So the patch looks ok, though it could be further simplified to completely get rid of State::locked. Will do that in a follow-up commit. Change-Id: If07a07b21effbf42918408a0b60b2d18bdc8665c
2013-12-09Updated coreChristian Lohmaier
Project: translations f3f04265562dcd40990cccdd83170c8afffef4ab
2013-12-09Do not compress .ui translations in .zip files.Matúš Kukan
Using zip files reduce the file count in installer. Uncompressed zip files can be compressed better by packaging, thus we reduce the size of final package. Change-Id: Id7c5ee9e302de325a29702b4e64301dc7102b2cf Reviewed-on: https://gerrit.libreoffice.org/6938 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2013-12-09drawingml import: read w:colorMiklos Vajna
Change-Id: I6ae7ea8b58e262e5b6226f8f789e39ebcc6077ca
2013-12-09drawingml import: read w:szMiklos Vajna
Change-Id: I40293a0b612b50d5da3d736f567310525608b308
2013-12-09drawingml import: read w:rPrMiklos Vajna
Change-Id: I4405f9bc073b6e0b8c0426561ae9d01d91efdd59
2013-12-09drawingml import: read w:sdtContentMiklos Vajna
Change-Id: I691b0ee28304659fedbe9cf8eff6ba1d757d0803
2013-12-09fix equalsAscii conversion. Noticed in fdo#72391Noel Grandin
In commit 363cc397172f2b0a94d9c4dc44fc8d95072795a3 "convert equalsAsciiL calls to startWith calls where possible" I incorrectly converted equalsAsciiL calls to startsWith calls. This commit fixes those places to use the == OUString operator. Change-Id: If76993baf73e3d8fb3bbcf6e8314e59fdc1207b6
2013-12-09Follow-up PatchVinaya Mandke
Changed variable names to Hungarian Notation Change-Id: I00f2a91f9faa4fd779851be7b48449a7be203e49 Reviewed-on: https://gerrit.libreoffice.org/7007 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2013-12-09Bin pointless micro-optimisationTor Lillqvist
Change-Id: I87285411001a1535dae5dd921f5cceb1570d5f95
2013-12-09fdo#72488: Broken text when showing visible spaceKhaled Hosny
Turning on showing nonprinting characters replaces the space with bullet character, but still draws the text with the original kern array, this works fine until there are ligatures involving the space character as the number of glyphs after replacing the space with the bullet will be different and the kern array will be completely off. This is a hack that gives up on replacing the space with a bullet when its width is zero, not sure if it would interfere with other legitimate uses. Change-Id: I5ed17132ead7cd141a4e8b0372e37541c163be30 Reviewed-on: https://gerrit.libreoffice.org/6995 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-12-09fdo#72394 Don't endlessly expand $(share_subdir_name) into itselfStephan Bergmann
The introduction of $(share_subdir_name) expanding to "share" in c6a73009747814513ab5a7277c211449c7378870 "Use subfolder names from <config_folders.h>" shows that SubstitutePathVariables::impl_reSubstituteVariables is fundamentally flawed in that it allows reducing variable occurrences even in variable names, so that it will expand an occurrence of "share" into an endless recursion of "$(share_subdir_name)" -> "$($(share_subdir_name)_subdir_name)" -> ... Adding $(share_subdir_name) to the list of variables that can only replace a complete path segment (delimited by "/"), from which it had erroneously been missing, "fixes" this problem for now. But the code is still wrong in at least two respects: * SubstitutePathVariables::impl_reSubstituteVariables arguably needs to be made more robust, to never reduce variable occurrences in variable names. * The compile-time variable LIBO_SHARE_FOLDER should not end up as a runtime framework path variable, esp. since accidentally re-substituting it for "share" segments in unrelated URLs like <file:///export/share/for-all> does not make sense. ac4e19f9085dbd0103c7336a5318aa1e55b3e3e0 "fdo#68552: Don't (attempt to) do run-time expansion of build-time parameters" had already attempted a fix for that, but it had to be reverted again with 791a8b96f754798192875da287c84f8cfa4e533e because it "Unfortunately does not work if BUILDDIR is different from SRCDIR." Change-Id: If214c179c0068fbaa475c1c9cac804d6a1dbb2dc
2013-12-09RTF export: unused forward declarationMiklos Vajna
Change-Id: Ida8e4d9e9b6ea7e1009b8cf617363d31e895a5a2
2013-12-09abi#10201 RTF export: fix crash when handling table::BorderLineStyle::NONEMiklos Vajna
Change-Id: I811820c0d550ce24ad2180a8917ef0087968c30b
2013-12-09SearchResults dialog: Use also AlignToCursor when setting cursor.Matúš Kukan
Change-Id: I4c802b5164bc0f0dc11da80c2225f9fc274e227c
2013-12-09fdo#72413: Fix O(n^2) in inserting SearchResults' items.Matúš Kukan
Thanks to moggi, who pointed to this, should be documented somewhere. Change-Id: I96ba2cca930e4b784a825987ea19e4fc9aacb6d6
2013-12-09WaE: C4310: cast truncates constant valueTor Lillqvist
Change-Id: I187382713aa85fa43e674f96e0a8cfb1f7ac0d03
2013-12-09Use OUString::startsWithStephan Bergmann
Change-Id: I703148113f4df43d17500478509a9e2089999bf6
2013-12-09Fix for Column Break if it appears in w:r which is not the first run.Vinaya Mandke
Explicitly ended paragraph when the column break appears in a run (which is not the first run in the paragraph), as Writer adds a column break only for new paragraph. Also the created paragraph must have the same para properties as the earlier one. Hence avoided pushing new para properties if paragraph is split to adjust a col break. Added UT for the same. Conflicts: sw/qa/extras/ooxmlexport/ooxmlexport.cxx Reviewed on: https://gerrit.libreoffice.org/6953 Change-Id: If7d503b7a4bfab31f40ceb0119876e5909252b2f
2013-12-09fdo#40314 Force intercept only for linear/poly trendlinesLaurent Balland-Poirier
Force intercept option is available only for linear and polynomial trendlines Change-Id: I98f551a51b4d1e85924ce23135588a03fabbea35 Reviewed-on: https://gerrit.libreoffice.org/7001 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Tomaž Vajngerl <quikee@gmail.com>
2013-12-08fdo#46262 Detect XML files with UTF-8 BOMMaxim Monastirsky
Also convert sal_Char (deprecated) -> char Change-Id: Ibf66f6a9ea751bab96f43671fe95a835c073d9e0 Reviewed-on: https://gerrit.libreoffice.org/6942 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-12-08Improve failure logStephan Bergmann
Change-Id: Icb0f0ec2e4660122d524cf7a7025d1b7f225b4cd
2013-12-08Give each CppunitTest its own UserInstallationStephan Bergmann
Change-Id: I0772c596a3d49e63a728281261db21817fcda156
2013-12-08Remove EmptyNumericField as it looks like it isn't used anymore.Tomaž Vajngerl
Change-Id: I2619aea6543ec19c360b44d8d22e0d7ebca2b658
2013-12-08Name the .pdb files so that WinDbg can consume them.Jan Holesovsky
Change-Id: I62cecfb36dd912a1a736d063761faa445a29f3a7
2013-12-08Revert "Name the .pdb files so that WinDbg can consume them."Jan Holesovsky
Grr, needs more work. This reverts commit 2ca092b7642d609f36951b45d50890b80340988d.
2013-12-08Name the .pdb files so that WinDbg can consume them.Jan Holesovsky
Change-Id: I62cecfb36dd912a1a736d063761faa445a29f3a7
2013-12-08Intermediate work in progress commit on the arm64 C++/UNO bridgeTor Lillqvist
Note that the arm64 code is not even close to "working" yet. Change-Id: I261d09f7e797cded26396ed0d4b8b3021f712ebf
2013-12-08Put local static fucntions into anonymous namespace.Tomaž Vajngerl
Change-Id: Id838860b6d44febe72fe3e51081107d5635e19b8
2013-12-08fdo#39206 Add support for image transformation in SVG ImportSamuel Mehrbrodt
Change-Id: I268599b0c13bbacf5db526fed79453a5443145a5 Reviewed-on: https://gerrit.libreoffice.org/6968 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2013-12-08unittest for fdo#71434Korrawit Pruegsanusak
Change-Id: I4ef376e048aa0ba37e5c1bc7664e9e8cd3e283b6 Reviewed-on: https://gerrit.libreoffice.org/6985 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-12-08Drop duplicate #includeTakeshi Abe
Change-Id: I05569ef98293445916e8f48e7f06abd795fe9bb5
2013-12-08Updated coreStanislav Horacek
Project: help 5d5a01b22caf3c26d6a0f9e14b531246444c2e35 fix typo in example for TRIM function Change-Id: Id1bb170188f62d8f7d335d0797f2ffe027d16efe Reviewed-on: https://gerrit.libreoffice.org/6976 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2013-12-08fdo#72260: guard against duplicate "name" attributeKorrawit Pruegsanusak
Change-Id: I1ee4b82e04318a50db8bb54bd5c7e00c79177d37 Reviewed-on: https://gerrit.libreoffice.org/6984 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-12-08put comment for the previous patch.Faisal M. Al-Otaibi
Change-Id: Id9cee84530d00d6d2528d038464e885e1286dfe5
2013-12-08XShapeDumper: empty name should not be dumpedKorrawit Pruegsanusak
Change-Id: Ic1ab8840c9e543cebf322de922b01739684789ad
2013-12-08sd/qa/unit: move and rename some files for consistencyKorrawit Pruegsanusak
2013-12-08add vim modelines for drawinglayer/source/dumper/*Korrawit Pruegsanusak
2013-12-08docx: fdo#44029 export the right alignment when locale are RTL.Faisal M. Al-Otaibi
Change-Id: I771eb0d0a90816f0c4cbd66cfcb755f67455bb9b
2013-12-08initial install-package-foo target for partial installsBjoern Michaelsen
Change-Id: I4ee41fdb600cb3a89da387dffe64e6a30192761c
2013-12-08this assert is wrongMarkus Mohrhard
In calc it seems that shapes can have no autostyle. e.g. exporting fdo60469-74405.xlsx to ods Change-Id: Ie0b2888094ba40a89748a070ca2d14f4078da619
2013-12-08fix infinite loop during exportMarkus Mohrhard
Change-Id: I75bfafbc7343aaddbbc5c7433e28b5d4154177dc
2013-12-08fix OOXML validation error with conditional formattingMarkus Mohrhard
Change-Id: I737b3f5bf140a0cf80fac6cae243922882cca018
2013-12-08fix validation error in OOXML chart exportMarkus Mohrhard
Change-Id: I750b33054ea0ee6202c0046a9f3947ab8bf44cd6
2013-12-07don't write this default attributeMarkus Mohrhard
"preserve" is the default value and the OOXML spec sadly does not contain the definition for xml:space. It is only mentioned in the documentation so validation against the schema file fails. Change-Id: I53f804e189dca585fceb4474b96b1b4536d5bde4
2013-12-07fdo#72391 empty formula is "rpt:", not starts with "rpt:"Lionel Elie Mamane
(all?) functions start with rpt: correction of erroneous cleanup wrt to equalsAsciiL Change-Id: I0568ef28a1e677f68016b8593c2b30d0ffba1bb5