summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: invert handling of standard system libraries:Michael Stahl2012-09-28480-958/+13
| | | | | | | Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
* gbuild: OpenBSD: remove custom gb_LinkTarget__command_dynamiclink:Michael Stahl2012-09-282-46/+0
| | | | | | Should no longer be necessary with the new handling of gb_STDLIBS. Change-Id: Ia94a7266806e2d09d7608f642b25933e42499525
* bean: just use AWTLIB on all platfroms to simplify thisMichael Stahl2012-09-282-16/+6
| | | | Change-Id: I6c8bc792a57750b7fd5f36e3eb97f76870a7a632
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for WNT:Michael Stahl2012-09-2873-253/+222
| | | | | | | add a new gb_LinkTarget_use_system_win32_libs to abstract different linker options on MSVC and GCC. Change-Id: Ic9bf2545f59bf7871e6fc06b290c486ddfbec03d
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for unxgcc/solarisMichael Stahl2012-09-2841-121/+173
| | | | Change-Id: Ia7f64bdd0fd81c5dcc08d828db4602b65e2da949
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for androidMichael Stahl2012-09-281-4/+0
| | | | Change-Id: I0b99b6effb57bcd9ab5687f8896940620986b785
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for MacMichael Stahl2012-09-2818-72/+74
| | | | Change-Id: I66f8229e186e312ed3242695db9ef0768ab4d9a0
* gbuild: clean up Mac OS X framework handling:Michael Stahl2012-09-2821-178/+77
| | | | | | | | | | | There are currently 3 different mechanisms being used for frameworks, which is of course intolerable so we invent a 4th one and standardize on it: gb_LinkTarget_use_darwin_frameworks (This doesn't mean using add_libs or externals was wrong, it was just inconsistent... and i don't see an obvious benefit of using externals here) Change-Id: I5de9020402c87e7236c6a358c47f02fa56642d3d
* vcl: clean up that Xinerama linkage...Michael Stahl2012-09-281-17/+4
| | | | | | ... odd duplication apparently due to wrong conversion from dmakefile. Change-Id: I9a9e183373ec43fb0b1eadc2c233ce659bebd107
* gbuild: clean up usage of weird x11_extensions module etc.Michael Stahl2012-09-288-27/+78
| | | | | | | Move libraries using those headers to RepositoryExternal.mk and also move pkg-config invocation to configure. Change-Id: I17a240fcba83a98f3f248f15b34d245f941c62e2
* gbuild: remove libraries handled by RepositoryExternal.mkMichael Stahl2012-09-285-9/+0
| | | | Change-Id: I159b7942cfa26f81ada421403835ff0f1e4b09ef
* gbuild: replace direct gb_STDLIBS use with ...Michael Stahl2012-09-28486-496/+972
| | | | | | ... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
* gbuild: split uwinapi out of gb_STDLIBSMichael Stahl2012-09-28444-8/+448
| | | | Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
* chart2: remove obsolete gcc 3.0.4 workaroundMichael Stahl2012-09-281-8/+0
| | | | Change-Id: I61e17cf9c7a96ddf251154e4590420ae4b4fdf27
* WaE: some warnings on RHEL-6 gccCaolán McNamara2012-09-281-0/+15
| | | | Change-Id: I7d852595fbe0395bc29aba86b2e110ffb5c28823
* Revert "fdo#52246 let helpex use gsicheck's tag checker"Andras Timar2012-09-288-551/+443
| | | | | | | | | | | | | This reverts commit e3b927787f3643f9e584cc80c974d5f907a94858. There will be a better solution in feature/killsdf soon. Conflicts: l10ntools/inc/gsicheck.hxx l10ntools/source/gsicheck.cxx l10ntools/source/gsimain.cxx Change-Id: I5d12f4ee069d7024345d78c45fb1587cb006c922
* Related: fdo#39626 bootstrap.ini is windows-only, use generic mechanismCaolán McNamara2012-09-281-1/+1
| | | | Change-Id: If3cb8451b8af874b82512f1b731654d918d0a196
* set MSP nameTor Lillqvist2012-09-281-35/+1
| | | | Change-Id: Ib1120ea82a8e3e9d15d524ff413a1342dec3dad0
* work around unexpected behaviour of msidb.exe from SDK 7.1Andras Timar2012-09-281-14/+18
| | | | Change-Id: I48cfa19c40140dc81b105e27051f99e8f1a0c8ae
* revert fc1e9f253dd07362065f2be9691be89fb9b3f84fAndras Timar2012-09-281-196/+0
| | | | | | | I don't know, if it made sense, but it definitely broke MSP patch creation in SUSE environment, so I reverted it. Change-Id: Ib6cea4a59993b4edadabfa1fdca42264a8eb2311
* install help xsl files unconditionally, needed for MSP patch creationAndras Timar2012-09-281-6/+6
| | | | Change-Id: Iec60fca2895cffac34290dc8db8954b95dda6606
* fdo#54744: Fix broken logic of string comparisonStephan Bergmann2012-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | d1cc007108442056f50d3a6d1212b2b4cfdc4c14 "sal_Bool to bool, String to OUString, in SfxMedium." changed !aLogicName.CompareToAscii( "private:stream", 14 ) == COMPARE_EQUAL // (a) where that suspicious ! made it effectively behave as aLogicName.CompareToAscii( "private:stream", 14 ) != COMPARE_EQUAL // (b) to (aLogicName.compareToAscii("private:stream", 14) == 0) // (c) where (c) corresponds to (a), but the intended behavior was apparently (b): Exporting to hybrid PDF now causes the embedded ODF stream (which is saved to a private:stream URL) to be empty, as (c) is erroneously satisfied now, causing the following lines to erroneously clear SID_OUTPUTSTREAM. Change-Id: Ia2c1a69db7b4da07bfe01f52c3f6759301358a84
* ::rtl::OUString to OUString in basctlRicardo Montania2012-09-286-26/+26
| | | | | | | Change-Id: I7be699102eab9cbf7184a5777a4b161db885adec Reviewed-on: https://gerrit.libreoffice.org/711 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
* n#782061 testcaseMiklos Vajna2012-09-282-0/+12
| | | | Change-Id: I6aa95063ac8fe825b47decc68b08a35d81e4d59d
* n#782061 DOCX import: w:position should respect w:sz in w:rPrDefaultMiklos Vajna2012-09-283-1/+20
| | | | | | | | | | Subscript relative font size (w:position) is in percents in Writer, but is in half points in Word. When checking for the default font size to count the percent value, the mapper should search font size (w:sz) not only in direct character properties, but also in default character properties (w:rPrDefault). Change-Id: I9286d44c6498c765ddfee795d50921ef58b80071
* explicitly link to libxsltCaolán McNamara2012-09-281-0/+1
| | | | Change-Id: I8cfcd82bd6198bcf70d6ec082f82aaac34cc50c2
* SetPosSizePixel->setPosSizePixelCaolán McNamara2012-09-282-2/+2
| | | | Change-Id: Id1cab5b27776180cd8403af848c1294858384b4a
* convert GetRepeatComment to OUStringCaolán McNamara2012-09-2810-127/+111
| | | | Change-Id: Ibf75533d04b3c68b875f44ad22639934578867e3
* fix up mergeCaolán McNamara2012-09-284-11/+3
| | | | Change-Id: I1ce7e72c2c0d1a2cf56df66197510e6870c18047
* adapt ThumbnailView::ImplInitScrollBarCaolán McNamara2012-09-281-1/+1
| | | | Change-Id: I6b675874fd683f1c9311322c4662f33380f9c113
* adapt uipreviewer for ucbhelper changeCaolán McNamara2012-09-281-10/+5
| | | | Change-Id: I60463d107d49ecc78053dd2592fc207164708040
* mbHasFocus renamed to mbHasControlFocusCaolán McNamara2012-09-281-1/+1
| | | | Change-Id: I44d37c490ca0554d9f5b286ffb79b65f1c3d1914
* have to register exslt handlers for string::tokenizeCaolán McNamara2012-09-282-1/+4
| | | | Change-Id: If761ebd095ef0ac14c6d659411eb63157eb8dd27
* sort child positions within parents according to grid positionCaolán McNamara2012-09-286-132/+47
| | | | | | | so that tabbing between widgets jumps between then in a sensible order Change-Id: I852f4fb08781da2b703f8f87e84abdf4c366fa26
* truly skip unshown widgets in tab traversalCaolán McNamara2012-09-284-11/+43
| | | | | | | make tab traversal of dialog widgets hidden because their containers are hidden and/or disabled Change-Id: I1947584717030f3703c018cbf05235811df7835e
* defer initializing dialog until sizeable/unsizeable is knownCaolán McNamara2012-09-284-6/+39
| | | | | | | we have to defer initializing the dialog until we have determined the sizeable/unsizable info as we can't change it after the fact Change-Id: I27c90f8f92953d919b36cddc6a99fae9d7db47eb
* adapt insert character dialog to new layoutCaolán McNamara2012-09-2810-320/+169
| | | | Change-Id: I5561c2684d0957b65aef0d139e9210ebdd703153
* add special character dialogGokul2012-09-281-0/+284
| | | | Change-Id: I9f5e6846593ab34995518598294950b34f91b83f
* reduce size requests if new text is same as oldCaolán McNamara2012-09-281-0/+3
| | | | Change-Id: I6e9b03c4baf05d096aa780b4f6d8635bb1e254ac
* merge SvxCharacterMap and SvxCharMapData togetherCaolán McNamara2012-09-282-85/+65
| | | | Change-Id: I417ce219924987f584cabf9ed8098607d6e5973c
* adapt sort-dialog code to use new layoutCaolán McNamara2012-09-287-550/+227
| | | | Change-Id: I925ebfaf1343be84d47736bd0d5703adfd1692d7
* add sort dialog .uiGokul2012-09-281-0/+786
| | | | Change-Id: I725cd86094f8605f093c730e7b18f4c1e4a9adea
* fix getNonLayout[Real]Parent helpersCaolán McNamara2012-09-281-2/+10
| | | | Change-Id: Idae11802aaeb3d9192cdf7fe8fae61788bbb9b5b
* we need to have the outermost TabDialog as the recipient of tab keystrokesCaolán McNamara2012-09-285-14/+28
| | | | Change-Id: I1d230512d2145a9a3198c25c60dcd8954928120e
* set the default button on various dialogsCaolán McNamara2012-09-2812-4/+13
| | | | Change-Id: I63b1cc73d8ed240c40dec07fe1f8470da8410464
* adapt zoom dialog code to layout widgetsCaolán McNamara2012-09-2810-367/+178
| | | | Change-Id: I7da387db88b8a4449dc1dc7099527f786b0d565e
* support has-default for buttonsCaolán McNamara2012-09-282-0/+17
| | | | Change-Id: I4b3b6bfa3fadaed0770b5e5254f5afc4c67de191
* move layout diagnostics to vcl.layout channelCaolán McNamara2012-09-289-25/+11
| | | | Change-Id: Ib33d91ea56219036182d30fdd3dc2159ce32a48c
* convert add/remove autoformats to new layout dialogsCaolán McNamara2012-09-288-144/+13
| | | | Change-Id: I79d658b4e8e1342c012a4bc52b3204ccceaa5520
* convert String Input dialogGokul2012-09-281-0/+110
| | | | Change-Id: I484f7b495d529664717cf2f9f3f1f4edc7c1ad01