summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-05-10Related: fdo#47644 get out of bounds conditions rightCaolán McNamara
Change-Id: Icac9a8337296f92af5007a051f00388a64955178
2012-05-10Make visibility tests work as intended on Mac OS XTor Lillqvist
If the tests detect that visibiliy works, then use it also in gbuild. In the old build system, -fvisibility=hidden was already being used on Mac OS X if HAVE_GCC_VISIBILITY_FEATURE had been detected. In configure.in, let's not hardcode the -shared, -fpic and -Wl,-z,defs options or the .so suffix used in visibility-related tests. Factor them out and use platform-specific options. Done just for Mac OS X so far. Using the Linux options for Mac OS X caused visibility tests to silently and misleadingly fail. Yes, it is silly to now define some platform-specific options in three places: configure.in, solenv/inc/* for the old build system, and solenv/gbuild/platform/* for gbuild. At least with my Xcode3 installation, I need to pass an -isysroot flag pointing to the SDK when running $CC -E, otherwise headers weren't found. This was then misinterpreted as the visibility tests failing. Pass -DHAVE_GCC_VISIBILITY_FEATURE to the compiler if configure detected visibility working. In that case also pass -fvisibility=hidden. HAVE_GCC_VISIBILITY_FEATURE being defined is supposed to mean that the -fvisibility=hidden option is used, I think. Pass also -fvisibility-inlines-hidden if that was detected to work. Change-Id: I I I58d566fcb07584246e91f45e683ce9b31208edba
2012-05-10fdo#45081: We never registered the SAL_OBJECT_CHILDCLASSNAMEA window classTor Lillqvist
A crucial line of code that called RegisterClassExA() for that window class had been deleted by accident in commit cda4a293608514783d38d470799cfbf97b245cc6 "Code cleanup" in May 2011, whoa. So apparently that window class is not needed for much except embedded video in Impress? Change-Id: I I19e70cefcf47aaf8a12a62539e0dacc5adb3c3b1
2012-05-10resolved fdo#49639 import .xls with HTML as such, not CSVEike Rathke
This restores the previous behavior for this content type, regression introduced with the fix for fdo#40021 a5eadc6aaafec92df23c57e258882a2c98ece0ad
2012-05-10do not prepend \n twice, it confuses KFileDialog (rhbz#820439)Luboš Luňák
Draw -> Export -> filetype combo was broken. Change-Id: I9349749274498d5834dd63e73f3856434b1ab8d9
2012-05-10WaE: unsafe mix of bool and sal_BoolCaolán McNamara
Change-Id: Ie2fcc1a5404c62dc15b98f99f89631795df91b01
2012-05-10i#119219 fix non-unicode RTF exportMiklos Vajna
There were two problems here: - non-unicode charset being set to Shift JIS for all UTF-8 text - non-unicode text using UTF-8 Change-Id: I533d3e950a4ebd611b5d5db8a95e724e729a641f
2012-05-10use com::sun::star::table::BorderLine2 instead of older BorderLine (n#758914)Radek Doulik
- older BorderLine doesn't seem to work in case InnerLineWidth and OuterLineWidth are set to equal positive value and distance is set to 0 (possible regression) - using the newer API solves the problem for us Change-Id: I69f10a0e947352d20b78dbdc39b7c9af95f8603b
2012-05-10resolved fdo#46233 value >12 with AM/PM can't be clock timeEike Rathke
2012-05-10Reduce broadcasting noise on initial title computationStephan Bergmann
...otherwise, SfxBaseModel::getTitle calls itself recursively until TitleHelper::m_sTitle has converged. Change-Id: I90577d1c2e4275ff2187d6531a1ca61e8355819b
2012-05-10Fix fdo#49720: Dropped unnecessary "sh -c" from popen callStephan Bergmann
Change-Id: I5de4ce4e26d995c447c99c8558f621dba6cdf110
2012-05-10configure icu for windows via runConfigureICU Cygwin/MSVCCaolán McNamara
which should hopefully a) work b) unblock the upgrade path for icu Change-Id: Ic70a627f3135e53016a4f9cfdef3fc85d55ab3e4
2012-05-10finally support min/max and percentile in color scalesMarkus Mohrhard
Still some updating problems. If min or max is changed the whole area is not updated. Change-Id: I9a513fd9c0613d48ce33524672a31078d8aedf46
2012-05-10import min, max and percent entries for color scales from xlsxMarkus Mohrhard
Change-Id: I Icebacfd711851c9223ed8f38d6445c82f575a47d
2012-05-10first part for min/max in color scalesMarkus Mohrhard
Change-Id: Ib397b93ac0a5a72052fdaa5bf41199e5967ad559
2012-05-10Removed unused SID_FRAMETITLEStephan Bergmann
...which was only ever written to, never read. This in turn allowed SfxViewFrame::UpdateTitle to return void instead of String, and made SfxObjectShell::UpdateTitle become unused. (The title appears to be created via SfxBaseModel::getTitle instead these days?) Change-Id: I5e1115a707134058a1f3a0beaa180eb471c817e6
2012-05-10fdo#49692 fix RTF export of empty paragraph numbering rulesMiklos Vajna
When there is a numbering rule, the fallback text is constructed so that whitespace separates the numbering and the paragraph text. When the numbering is empty, we don't need that separator. Change-Id: I17a11ddd73addc8c95a0c2b54402e6dd2705d094
2012-05-10Don't bundle stdelibs on Linux by defaultFridrich Štrba
Change-Id: Ib498067bad7b370dc5ab58e728de9f64f375a1a8
2012-05-10callcatcher: update unused code listCaolán McNamara
Change-Id: I286988eabcc2d813008597b3657c366d510f8ab6
2012-05-10Resolves: fdo#37044 two different TransliterationChgData structsCaolán McNamara
There are two structs called TransliterationChgData with different layout. The crashes on MacOSX must be due to this. Rename them so they've different names. Change-Id: I887a33bed26b339e229b7fb1ef8dddd192f6fae3
2012-05-10ditch temporary unused StringsCaolán McNamara
Change-Id: Ie4e27ed027761748e45f2ed6b97b236f742c01be
2012-05-10fix use of cups for default caseCaolán McNamara
27abb730b290f3516582d2d787ef64af76663f97 broke printing Change-Id: Ib1cd9b31c7e3e5644b5207cb28c4fd178837c19d
2012-05-10WaE: msvc2008 C4928 copy-ctor confusionCaolán McNamara
Change-Id: Id086aedc27977b4ca81299a00a340a65284118b8
2012-05-10fdo#49692 RTFValue::Clone(): copy m_bForceString as wellMiklos Vajna
Change-Id: Ib8f06ff33fd9c01ea4a1e47c97cfa12f2ced7318
2012-05-10normalize variable names in gbuild user makefilesMichael Stahl
Variables should have module name as prefix to prevent collisions.
2012-05-10error handling in SortTree custom actionAndras Timar
Change-Id: I03a06d09e3e84b6cb13bd68e8be4caebb1b9f5ab
2012-05-10Bin a few lines of apparently leftover temporary debugging codeTor Lillqvist
Change-Id: Idc543cc7f45c3dbaf3a49c8edeaaa0b5f59492ac
2012-05-10-Wself-assignLuboš Luňák
Change-Id: I89e93fdd9e89d37230321d52efe6d2ff91c60767
2012-05-10RTFDocumentImpl::runProps: avoid copy&pasteMiklos Vajna
Change-Id: I3b1f03c0a3236461e753ef236881313ea7daa0d0
2012-05-10render color scales correctlyMarkus Mohrhard
Change-Id: I622b8911122e1c0693e0cbf5de8e6da1b09411c0
2012-05-10remove debug outputMarkus Mohrhard
Change-Id: I58e8dc576de18df6da22388a7c25295b260bf98b
2012-05-10Color Scales are now displayed after import from xlsxMarkus Mohrhard
It is still displayed at the wrong position but it looks promising. Change-Id: I7ee55525cc219594635d81240f198b0a30c8707d
2012-05-09Access properties in the edit source when the field item is already inserted.Kohei Yoshida
Change-Id: Idbc8b7fde425c1c14af27472a4850b290cf0a68c
2012-05-09FILE (title) field doesn't have any properties.Kohei Yoshida
Change-Id: I67c62e6be5afc65d74462a17b047946de88659a0
2012-05-09Use UNO field type when searching for specific field items.Kohei Yoshida
Change-Id: Ic79a545132aabaf93bd4ef465829b024c2e6a865
2012-05-09fdo#49605: SwEditShell: fix handling of overlapping grammar errorsDaniel Naber
2012-05-09work around -Wreturn-type with compilers that cannot figure it out themselvesLuboš Luňák
2012-05-09conversion to void* needs an explicit castLuboš Luňák
2012-05-09Enable configure switch for cupsTomas Chvatal
This allows us not to have cups during the build time of libreoffice. Commit is inspired from patch from Dave Flogeras <dflogeras@gmail.com>. Change-Id: I I32a14eb6e7bdd13de1a737d4798c852a830ae326
2012-05-09sort fonts so that upright faces are shown in the font dropdown listCaolán McNamara
Change font sort so that font faces like those of URW Palladio L whose italic variant is lighter than its upright variant are sorted with the upright fonts first so we don't see italic variants in the font widget. Also sort "normal" weight faces below all other weights Change-Id: I9c81b475d95b9dd17a873fd791b942512ff039c7
2012-05-09WaE: silence tedious msvc2008 warningsCaolán McNamara
Change-Id: Iecdc085b9af162ffdc6e0c52ad8a408a0983e088
2012-05-09changes to fdo#44738 patch to make it work with other localesEike Rathke
Using some fixed format code for whatever locale is wrong anyway, use NfIndexTableOffset and NfKeywordIndex instead. Probably those didn't exist back at that time.
2012-05-09fdo#44738 use general format code keywordsUrmas
2012-05-09one more --enable-dbgutil typoLuboš Luňák
2012-05-09deliver the boost libraries we buildFridrich Štrba
Change-Id: Idd3a133ee8271716518eb167192be91e76f90075
2012-05-09fdo#49271 rtftok: make sure we send char props if there are no runsMiklos Vajna
Change-Id: Id900b06fc1aad1d0f50ff92e3c12616dfbc1a81e
2012-05-09EasyHack fdo#42783: get rid of CPU define/build system variableThomas Collerton
Change-Id: I6a178f7ff9c8306e15bcfa847ad1e5e4f8476504
2012-05-09removed unused definesTakeshi Abe
Change-Id: Ife6ba8104a3af79aa5d62509755b9d2c58d98e3a
2012-05-09removed dead codeTakeshi Abe
Change-Id: Ifaa3e07c98cea3de51d715e0eb7657a0896e77eb
2012-05-09fix gb_Helper_abbreviate_dirs_native $ quotingMichael Stahl