summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-26fix OUString conversionSean Young
This used to be equalsAscii( "hg", 0, 2 ) before conversion. Fixes 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10 Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c Reviewed-on: https://gerrit.libreoffice.org/4035 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-05-26Updated coreAndras Timar
Project: translations 7db61e0f23b962f97e9246e0a8fb60e47fff0ac9
2013-05-25Fix some escaping bug in l10ntoolsZolnai Tamás
1. A typo in export.cxx makes not working replacing 2. EscapeAll() ignored single backlash characters Change-Id: I1a5309778acdd601391f643ebf3c66d04a6601d4
2013-05-25SwFlowFrm: rename member variables missing their prefixMiklos Vajna
Change-Id: Id7d1271408232e37aa23373dcd1ae6872ac8574b
2013-05-25gsicheck is no moreAndras Timar
Change-Id: I4b70690073247ebb9dde35370630b568568821d3
2013-05-25translatable="yes" for some elements in .ui filesAndras Timar
Change-Id: I915cd6e73f907850f17b102c7860a827b91eef37
2013-05-25blind attempt to unbreak android buildDavid Tardon
Change-Id: I633568f2bfd2af6b14f8bcc192cd2fcc32521131
2013-05-25Uploading libwps 0.2.9Fridrich Štrba
Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758 Reviewed-on: https://gerrit.libreoffice.org/4033 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-05-25Resolves: #i120746# FormScriptingEnvironment is never releasedJian Fang Zhang
when created in the FmXUndoEnvironment ctor it is never released Found by: zhangjf Patch by: zhangjf (cherry picked from commit d52fc99575db0d30b19a69dadcd2c3544584ecab) Change-Id: Iaeba1018551441f3bb13f90d3d42ac2855e285e6
2013-05-25provide complete types of some SdrCustomShapeGeometryItem functors...Herbert Dürr
before they are used (cherry picked from commit 7d6c5e79a17aa2ff392433667187c4bfe4ee2432) Conflicts: svx/inc/svx/sdasitm.hxx svx/source/items/customshapeitem.cxx Change-Id: Iac3e37bcfd4ab26d97411092259da2cc1879c2de
2013-05-25provide complete types of FragmentHandler and RecordInfo before they are usedHerbert Dürr
(cherry picked from commit c73bc9587bdcf6a5d3add454fe3383fc9d2c1e65) Conflicts: oox/inc/oox/core/recordparser.hxx Change-Id: I6deecaabe32d4b071a83ce4687f83543354ddac2
2013-05-25typo: s/Toolbare/Toolbars/Andras Timar
Change-Id: Id9311252ced86df661f9219fe74478e69d9219ac
2013-05-25typo: s/recommanded/recommended/Andras Timar
Change-Id: I4a22f856b993ef09556fcf921aa1f01be322cd4b
2013-05-25Fix fdo#64972 - strikethrough displays too highKhaled Hosny
I was calculating the leading before setting the ascent and descent, oops. Change-Id: Ic58ecb1a65cb33715ea06f5e3214c4acbcff1e40
2013-05-25Resolves: #i119874 Fixed text alignment in RTL layoutCaolán McNamara
This reverts commit 979def88090633bfee0e0445b19999a1dac71ed4, this time manually confirmed that the import layout does change, but that it appears to be all desirable changes Change-Id: Iee5e5ebd16989f65569b02f8b4f6570985157dfc
2013-05-25use XShapeHash type to make this *_map compatible...Herbert Dürr
with the corresponding TR1 container The TR1 containers don't support dynamic hash functions provided in their constructor. Having the hash functor as part the hash container's type is cleaner anyway. (cherry picked from commit fb8df93381493dee3d0e511c556d82d1f177367a) Conflicts: animations/source/animcore/targetpropertiescreator.cxx Change-Id: I51ae91ef74002cbc8f24cd5f4df7dda58e1c4f8d
2013-05-25Revert "Fix improper glyph positioning with old fonts"Khaled Hosny
This reverts commit cef3f3aac2f7a372e796deac4ee3e8155c5eb697. The previous commit addressed the real issue. Change-Id: I802e5f19e4a4991c316135f3984a1b9a6533a104
2013-05-25A hack to fix mark placement in old fontsKhaled Hosny
We need a way to recognize non spacing marks in fonts lacking GDEF table (like old Arabic fonts), so I just check for zero advance width and hope nothing elsewhere will break... Change-Id: I6fa848e97ba24d71fc9a381ae439e0fb98e50419
2013-05-25Revert "fdo#46808, Convert awt::UnoControlDialogModel to new style"Stephan Bergmann
This reverts commit 6c61b20a8d4a6dcac28801cde82a211fb7e30654. As discussed at <http://lists.freedesktop.org/archives/libreoffice/2013-May/052449.html> "Re: fdo#46808, Convert awt::UnoControlDialogModel to new style problem" why the odd change in 2e2a4827ce6708f0e8677dba9cc92e1479a44086 "scripting: get CreateUnoDialog() work again" appears to fix things again: The problem is that the implementation of the css.awt.UnoControlDialogModel involves UNO aggregation (IMPL_CREATE_INSTANCE_WITH_GEOMETRY(UnoControlDialogModel) in toolkit/soruce/helper/registerservices.cxx creating a OGeometryControlModel<UnoControlDialogModel> instance that aggregates a UnoControlDialogModel instance). That means that queryInterface can return a reference to something that is technically a different object, and that's what's happening here, and explains why calling setPropertyValue in two different ways on what logically appears to be a single object can end up calling two different implementations (of two different physical objects). (UNO aggregation is known to be broken and should not be used. Nevertheless, there's still code that does---code that is a horrible mess and hard to clean up.) That all this worked as intended in the past is just sheer luck, but any way of substantially touching it is asking for trouble. I'm going to revert 6c61b20a8d4a6dcac28801cde82a211fb7e30654 again. I wasn't able to revert without also reverting be50ad28f5bbdaeff527f646481ce263843c2401 "fdo#46808, Convert awt::XUnoControlDialog to new style," as the two were tightly dependant. Also reverts all the follow-up fixes cb4b6dde8fda2a5848e11063028bf44d72f85431 "-Werror,-Wuninitialized" (sans the const-ness fix in UpdateHandler::insertControlModel), 697a007c61b9cabceb9767fad87cd5822b300452 "Fix exception specifications," 2ce6828bbbf6ba181bb2276adeec279e74151ef6 "fix awt::UnoControlModelDialog crash," and 2e2a4827ce6708f0e8677dba9cc92e1479a44086 "scripting: get CreateUnoDialog() work again." Conflicts: basctl/source/dlged/dlged.cxx filter/source/t602/t602filter.cxx xmlscript/test/imexp.cxx Change-Id: I5d133468062f3ca36300db52fbd699be1ac72998
2013-05-25i did not intend to commit thisDavid Tardon
Change-Id: I4cecd0105156adeb65bf1d42c3b26f8ad669a52b
2013-05-25fix generated deps on headers in $(OUTDIR)/incDavid Tardon
Change-Id: Id4d03f2d500e8fcec4b6ead5365eaffbd0ece19f
2013-05-24Revert "Resolves: #i119874 Fixed text alignment in RTL layout."Caolán McNamara
This reverts commit 54c679f481647890f18151f4db05cfc3eff5d98b. pushed that too soon before verifying if it does what it says it does
2013-05-24Resolves: #i120529# abort print controller job, if no pages will be printedOliver-Rainer Wittmann
(cherry picked from commit aad8d0b80c56b956ce674e713d4d09a077e20f68) Change-Id: I7c341961370ce12de1aeb8f0caed18f2dc496390
2013-05-24Robustify and fix leak in NBOTypeMgrBase::ImplLoad().Mark Wielaard
The >>operator of SvStream doesn't initialize a variable if the stream is faulty. So initialize the variables before usage. Also delete the SvStream even if it was faulty. Change-Id: I5a7f31016e060c3b9fb4f0fd1889f444877cb89d Reviewed-on: https://gerrit.libreoffice.org/4031 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2013-05-24Fix memory leak in DrawViewShell::GetAttrState().Mark Wielaard
DrawViewShell::GetAttrState() might create a temporary new SvxNumRule object. Make sure it gets deleted when done. Change-Id: I33ddd9df983193fe87dd076267043d202cdfc3d5 Reviewed-on: https://gerrit.libreoffice.org/4020 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-05-24blasted headers in new locations thinkoCaolán McNamara
Change-Id: Iab62e87ed59061ee05daeae4ecd691c119a96b82
2013-05-24this themeing thing doesn't actually do anythingCaolán McNamara
both branches are the same and the set/get aren't called anyway. originally introduced with d02f75a8c36705924ddd6a5921fe3012fafce812 Change-Id: I94399bba0fa259bfafcc214e2df15f172d32374f
2013-05-24Resolves: #i119874 Fixed text alignment in RTL layout.Andre Fischer
Reported by: Li Feng Wang Patch by: Jianyuan Li Review by: Andre Fischer (cherry picked from commit 57fdcdd79d1682ee7d5e88fbab3803631496afa2) Conflicts: filter/inc/filter/msfilter/svdfppt.hxx filter/source/msfilter/svdfppt.cxx Change-Id: I6adae6d40ff106caeea2b9310a57228257d79404 Related: #i119874# Missing part of patch. Patch by: Jianyuan Li (cherry picked from commit a7dc3e8b82c87b138c973f1434717d634ed8dc67) Change-Id: Icff3e1167ab780612ad47775aaa39c9baa99c70f
2013-05-24A miscellaneous use of boost.Pedro Giffuni
Sinc(x) is a simple function used in communications. boost happens to use it for quaternion math. The implementation is simple, however it looks fun to re-use the boost function even if just to say we are using quaternion math somewhere ;). The performance difference is not likely to be huge but JIC, set up a specific Boost math policy to limit type promotion with it's corresponding impact. (cherry picked from commit d1f61b3f3564ca5421a13b77e4c7c78bb409e9e1) Conflicts: vcl/inc/vcl/bitmap.hxx Change-Id: I5f01db1688eedee25a2943ca3aa6e957b400c759
2013-05-24WaE: 'static_cast' : truncation of constant valueTor Lillqvist
Change-Id: Icbb624b1441330406c0930aa6f1f15ffc9b138b8
2013-05-24gbuild: register freetypeDavid Tardon
Change-Id: I2b586e37906cf633d035e28fbf279eeffd17ef6c
2013-05-24gbuild: don't register fontconfig and freetype twiceDavid Tardon
Change-Id: I090d7d99a1f618c73a8d82fe2e95932d61ea1099
2013-05-24Add Corel Draw and MS Publisher MIME Types to DrawSamuel Mehrbrodt
Change-Id: Idbaa8cea7427db3103954c6c60aa7caa6784a3ba Reviewed-on: https://gerrit.libreoffice.org/4022 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2013-05-24add missing endefDavid Tardon
Change-Id: Idf448a865ad49eb67684589d9d669bff5911b0d6
2013-05-24kill and bury $(OUTDIR)/incDavid Tardon
Change-Id: Ifaac9bd368cb62abba5ebea315939c91856d0ee0
2013-05-24stop delivering globlmn.hrcDavid Tardon
Change-Id: Ibcc9679b37f22fdfb6a53503b252f55a52834fbb
2013-05-24stop delivering libwps headersDavid Tardon
Yes, I am impatient .-) Change-Id: Ic3a51ffc0a151e8ae71f8d2ff067ea4c3ad1c6b2
2013-05-24do not deliver libwpg headersDavid Tardon
Yes, I am impatient .-) Change-Id: I3d9c292b0d86bc1dd40a574272a43d8178f3a3b3
2013-05-24add missing modelinesDavid Tardon
Change-Id: I84028e254ed1bea71321da11be2027577ce4fa85
2013-05-24stop delivering freetype headersDavid Tardon
Change-Id: I8e14cc411520272969cfd24048e403b9fd53cde4
2013-05-24stop delivering fontconfig headersDavid Tardon
Change-Id: Idb11e26ddf19c5424b838586dbd1d8d34a93cf23
2013-05-24stop delivering libodfgen headersDavid Tardon
Change-Id: I6402ef93bec9bf996089dcef702081b9853b9a0c
2013-05-24stop delivering libcdr headersDavid Tardon
Change-Id: I2baf55f41bc4f2fa934db3580103cebaeb60155c
2013-05-24gbuild: allow to call Postprocess targets from top levelDavid Tardon
Change-Id: Id2755144f5942b4aeaaca8ef6dad0fcb11ddf76a
2013-05-24gbuild: simplify reg. of targets for PostprocessDavid Tardon
Change-Id: Id184df89c5c15c55e42f376ed06c83174c486f67
2013-05-24show the 'java' options page when java disabledCaolán McNamara
because there are now a bunch of unrelated to java things in there in its new incarnation as the "advanced" tabpage this removes the weird empty tabpage in options in the java-disabled-at-build-time configuration Change-Id: Ie59d8362d440c41e746b67a0195e4159848f162a
2013-05-24fix syntax errors in python wizardsDavid Tardon
Change-Id: Ia237a0095c2cc783f52224bdde5d525baafacc52
2013-05-24Resolves: #i120481# Add registered transferable flavor...Andre Fischer
to make the Writer accept column headers dragged from database tables. (cherry picked from commit a32aabba57b53f581691f60e5484a6ddf3deb9f2) Change-Id: I63d41c8000cdfc7f0b2ca28e83aaedf2e822e64d
2013-05-24Updated coreCaolán McNamara
Project: help 9d599487454a75a8076f2e40eace959ac58824fb
2013-05-24WaE: unused parameter ´other´Tor Lillqvist
Change-Id: I13dc9ac0fcbf515df3f44ab18e0fee9cfb8ef239