summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-04-19fdo#60949: Move some libs to OOOLIBSMarcos Paulo de Souza3-56/+10
Compile test only :) Change-Id: I1e546b824ec027bb1321e36fb060af5b4cfd1bf1 Reviewed-on: https://gerrit.libreoffice.org/3476 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2013-04-19fdo#63591 pack images referenced by .ui filesDavid Tardon4-4/+104
Change-Id: Ia7e932a98d3f2c8bca981261406798760b69f8e8
2013-04-19gbuild: fix deps for UIConfig packagesDavid Tardon1-2/+3
Change-Id: I18c270cbcde82c315fd7cf1ba8dfc37ebe1a81aa
2013-04-19Personas: Rename them to Themes even in the UI.Jan Holesovsky2-9/+9
Change-Id: Ia7916e0cbbf91de09195c20b60f31ffe80256a9c
2013-04-19Personas: Now they are called 'Themes', and changed location.Jan Holesovsky1-22/+12
Updated the URL's + the code that works with them & parses the page accordingly. Change-Id: Iba1414c749bdf227b3945162da83e3d35ce86244
2013-04-19Fix https://-related crashes.Jan Holesovsky1-3/+4
The internal openssl on 64bit linux was built as linux-generic32, instead of linux-generi64, which caused crashes later when used. This patch alignes it with the logic before gbuildization. Change-Id: I2919a91138e8f33ad50e64728496144bac815321
2013-04-19gbuild: PythonTest: do not invoke the python.bin directlyMichael Stahl1-1/+1
This works to run the test (with the fixed RPATH in python.bin from previous commit), but debugging with gdb becomes impossible. The tests need PYTHONPATH set to find the internal python libraries, but gdb also uses PYTHONPATH and then tries to load the libraries there which do not necessarily match the Python version that gdb is built against. Invoking the python wrapper shell script avoids this, and since that "exec"'s python.bin debugging with gdb works too. Change-Id: I6ea2feb44cebeda1ba2c397baa3837f9f1259a08
2013-04-19python3: put an RPATH into python binary ...Michael Stahl4-5/+19
... and get rid of LD_LIBRARY_PATH hack in wrapper shell script. Change-Id: I7d91c6086460504d656de7b018087264165f396b
2013-04-19use GLIB_CHECK_VERSION instead of GLIB_VERSION_X_XXIvan Timofeev4-4/+4
Michael Meeks pointed out that the latter can cause problems. Change-Id: I68e7f8c6dcfae52305738b2a8cdee72e9c2c7f93
2013-04-19just added a big red noticeEike Rathke2-1/+9
Change-Id: I095a824c18a4ea61663e2706daa6616d60aaeb34
2013-04-19Revert "Revert "fix fdo#47018 Impress paste destroy bullet""Eike Rathke2-8/+104
This reverts commit 674a40fe830748b63eafeaf07e0932e2e0a81ba6. And restores a95cce27295f9cd255fa72eaded00972e3efb69b with the exception that the sal_Int8 to sal_uInt16 change is omitted. This stream length change causes loading of autoformats to fail, which are stored in binary format, i.e. in user config's autotbl.fmt, loaded and stored in Calc's ScAutoFormat sc/source/core/tool/autoform.cxx and Writer's SwTableAutoFmtTbl sw/source/core/doc/tblafmt.cxx Change-Id: I59f5d3b1c7e1011a8db304855b2fcf28971e7cb1
2013-04-19Add -wd4996 back in the debvugging runtime (_DEBUG, dbgutil build) caseTor Lillqvist1-0/+9
Otherwise we get: 'std::_Copy_impl': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. Change-Id: I7d9cdb243b1bd7c884c5e4e658cfcd13d1ca8223
2013-04-19Adapt SDK to usage of msvcrtd for Windows --enable-dbgutilStephan Bergmann70-87/+41
* Re-use existing settings/dk.mk to tunnel ENABLE_DEBUG into the SDK. Turns out this was explicitly included in ~all examples Makefiles, but only after settings.mk where it is now used, so include it in settings.mk now and dropped it from all the exmaples Makefiles. * The old settings.mk was apparently confused with using /MT ("link with LIBCMT.LIB") on cl command line and /MD ("link with MSVCRT.LIB") on link command line (where it was ignored), and you apparently can't pass both together to cl, so I settled on /MD (resp. /MDd) now and dropped /MT (resp. /MTd). No idea if that is exactly right, however. * Introduced client-facing LIBO_SDK_LDFLAGS_STDLIBS that covers kernel32.lib and msvcrt.lib vs. msvcrtd.lib on Windows. Adapted examples Makefiles and /ure/source/uretest/Makefile accordingly. Some examples Makefiles additionally use msvcprt.lib, no idea whether that still needs to be addressed. Change-Id: Ia8d9d177e415abfbaf6f9fa6239f0ef9998868be
2013-04-19fdo#60641, localise stringsÁdám Csaba Király1-1/+14
Uses resource from numberingtypelistbox.src, to localise "Native Numbering" and the Cyrillic and Greek strings. Change-Id: I3dfafc90686bea9ddee67262044afa2619b882f8 Reviewed-on: https://gerrit.libreoffice.org/3441 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-04-19Interactive JuniTest debugging on Mac OS X, tooStephan Bergmann2-2/+21
Change-Id: If1faab6b5903e287d800899f243b8b568b27c312
2013-04-19Do build libwps for iOSTor Lillqvist1-3/+1
Change-Id: Icd3120496e5548349ca58423ea537f392f6d5c6b
2013-04-19fdo#42781 Do not unnecessarily ignore MSVC warningsPetr Kraus1-34/+0
Removed some ignored warnings for MSVC compiler that should not occur. MSVC 2010 can, but do not issue these for me. Some of them are "disabled by default" and should not occur unless -Wall C warnings: C4180, C4250, C4255, C4275, C4290, C4503, C4511, C4611, C4640 CXX warnings: C4180, C4242, C4265, C4503, C4511, C4626, C4640, C4996 Change-Id: I61b692a9c02a8900f80b019e11ad4acdea3e4dfc Reviewed-on: https://gerrit.libreoffice.org/3203 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Remove pass-through header svtools/inc/svtools/txtcmp.hxxMichael Dunphy22-100/+17
Change-Id: I605ae778e57a12588dca274a4ee34a018004034e Remove pass-through header sfx2/inc/sfx2/imgdef.hxx Change-Id: I9a5ebabefccdd63b55d64aec26488542d0d362e3 Remove pass-through header xmloff/inc/xmloff/xmlcnitm.hxx Change-Id: If880679499daee2f77d1f6e148dba963d09bbb9c Reviewed-on: https://gerrit.libreoffice.org/3477 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Make Application::PostZoomEvent() and PostScrollEvent() non-DESKTOP onlyTor Lillqvist2-1/+7
That is where they are used anyway. Avoids misleading entries in unusedcode.easy. Change-Id: I2ce06ebca55998dc1df7df1f40b08b496adfbc64
2013-04-19curl: add missing dependency on NSS external (zlib too)Michael Stahl1-0/+5
Thanks again to Alex Thurgood, who doesn't have much luck this week :) Change-Id: I0e902f6994b07fb277b3561fa5bfc8662e954202
2013-04-19Uploading libwps 0.2.8 releaseFridrich Štrba9-148/+58
Change-Id: I53413843694bd090d5eaa714b141761e8ad7db60
2013-04-19fdo#63711 Calc: fix Catalan and Hungarian hyphenationLászló Németh1-21/+28
Change-Id: I08962578e5d41637e78c91f5df45e518893c82e5
2013-04-19Revert "fix fdo#47018 Impress paste destroy bullet"Stephan Bergmann3-107/+10
This reverts commit a95cce27295f9cd255fa72eaded00972e3efb69b, it lead to live- lock in JunitTest_sc_unoapi, where SvxBoxItem::Create (editeng/source/items/frmitems.cxx) failed to break out of the while(true) loop, apparently because it kept reading past the end of rStrm, so cLine wouldn't be updated. (That code would need to be made more robust, but I do not know how best to flag errors from SvxBoxItem::Create?) What looks suspicious about the changes of a95cce27295f9cd255fa72eaded00972e3efb69b at least to editeng/source/items/frmitems.cxx is that it changes the stream's format, now reading/writing a 16 bit value where it previously read/wrote an 8 bit value (SvStream /does/ support sal_Int8, btw). Change-Id: I1a46746559dcf8e1ea8be63a9a0cf2d32ccc69a1
2013-04-19lp#1085169: we overactivate here, as it does not seem to hurtBjoern Michaelsen3-19/+23
Change-Id: I4f6e76347c5c9b5c67a09b8c3dcd1b1708e8e703
2013-04-19better use SAL_LOG_INFO as triggerBjoern Michaelsen1-1/+1
Change-Id: I37635f9bd86d194b303705a58d81502d7d586692
2013-04-19Resolves: #i121197# Escape non-ASCII chars from css.style.NumberingTypeAriel Constenla-Haile1-10/+10
Patch by: Tsutomu Uchino Review by: arielch (cherry picked from commit 6970569ca1e0adf78ac34a5fbab434f5026d3a89) Conflicts: offapi/com/sun/star/style/NumberingType.idl Change-Id: I9375377c4fb15f871beb46ae96b107bb1296b6b6
2013-04-19remove needless explicit type for swap<>()Luboš Luňák1-1/+1
MSVC gives: C:/PROGRA~2/MICROS~2.0/VC/include\vector(1544) : error C2825: '_Alloc': must be a class or namespace when followed by '::' C:/PROGRA~2/MICROS~2.0/VC/include\vector(1589) : see reference to class template instantiation 'std::_Vb_iter_base<_Alloc>' being compiled with [ _Alloc=ScDPResultFilterSet::MemberNode * ] C:/cygwin/home/tinderbox/master-build/sc/source/core/data/dpresfilter.cxx(147) : see reference to class template instantiation 'std::_Vb_reference<_Alloc>' being compiled with [ _Alloc=ScDPResultFilterSet::MemberNode * ] Change-Id: I394f861aa29a8b6e43ea92447215a7868955555a
2013-04-19sw: missing prefix for global pBreakItMiklos Vajna44-275/+275
Change-Id: I7fa8e697537ce8eb915da00920bf6882603b115a
2013-04-19Resolves: coverity#708649# start to fix mis-pimpl-ification of Window classHerbert Dürr2-165/+158
(cherry picked from commit b0a0253e4fea1d79bc255d45f8472498a3206fd5) Conflicts: vcl/source/window/window.cxx Change-Id: I8330b7361dfdd9f291babb2e49d59ddeb91f5e35
2013-04-19fdo#62699: Drop wrapper headerMarcos Paulo de Souza20-50/+17
Change-Id: I21e91ab136c944c6dc77a90500b1bcebbf7cf851 Reviewed-on: https://gerrit.libreoffice.org/3473 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19fdo#31082 cursor visible during impress presentationjorendc1-0/+1
Change-Id: I8983676244d0b996c237cbfc487ed68a535803d1 Reviewed-on: https://gerrit.libreoffice.org/3376 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Presumably "call clock" should be "wall clock"Tor Lillqvist1-1/+1
Change-Id: I7bcdfccc17de7057cc47720bd6ce78345f2d6d7c
2013-04-19Make the use of SAL_LOG=+WARN+INFO optionalTor Lillqvist1-1/+6
Change-Id: I6af17a7745f4de88b4933e93b77eda1050760794
2013-04-19Minor comment changeTor Lillqvist1-5/+8
Change-Id: I14e9b86c23ff000df2339a37ba78a11cc319f27c
2013-04-19Attempt to avoid popping up keyboard after panningTor Lillqvist1-1/+5
Change-Id: Ie5639ea5a2c50e54ab880ac850287de07ff69959
2013-04-19Java cleanup, use generics in calls to UnoRuntime#queryInterfaceNoel Grandin8-20/+20
A handful of places wrap the call to queryInterface. With a little generics love, we can reduce the casting required. Change-Id: I9efca2afb1b23fad2359af24e1c273aea96e45fe Reviewed-on: https://gerrit.libreoffice.org/3433 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Java cleanup, remove the rest of the unnecessary castsNoel Grandin141-1918/+1513
Change-Id: Ia61d250f6b3711abc29569c5ece38a6f87e38daa Reviewed-on: https://gerrit.libreoffice.org/3432 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Java cleanup, remove unnecessary castsNoel Grandin48-379/+373
Change-Id: Id12089bc7df16631737e6acaee0973fb91dd953f Reviewed-on: https://gerrit.libreoffice.org/3431 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Java cleanup in mediawiki extensionNoel Grandin10-191/+167
- remove unnecessary casts - convert Hashtable->Map and Vector->ArrayList - remove dead fields Change-Id: Id85abee74857325a113133bf61474b962256489c Reviewed-on: https://gerrit.libreoffice.org/3430 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19fdo#63693 Do not force java -d32 for a 64-bit SDKStephan Bergmann1-0/+2
The test to determine JAVA_OPTIONS was already cheesy (e.g., it does not catch java-1.7.0-openjdk-1.7.0.9-2.3.8.0.fc18.x86_64, as there "java -version" outputs "OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)" with "64-Bit" in the second instead of the third field), so make it a bit more cheesy still (i.e., just cover the case to not set -d32 for x86_64). Change-Id: Ib10a16fb3f8104875bfda7de0e8bce59b9c3b06a
2013-04-19Prefer simple and working solution to obscure and non-workingTor Lillqvist3-6/+4
Change-Id: I5c7d02daced542222c2cb3881fafd2d58fe7f14d
2013-04-19-Werror,-WformatStephan Bergmann1-2/+2
Change-Id: I10eb204e63dee480a54494f5869f1f1b2e4bfc92
2013-04-19date/time IDL datatypes incompatible change: fixupLionel Elie Mamane1-6/+6
Change-Id: I3733deac232d0075bdd889ce52d7e6f67746d4f8
2013-04-19date/time IDL datatypes incompatible change: fixupLionel Elie Mamane1-10/+10
Change-Id: Ib750a009e49e19d63f8b6df85947a7b5c9b75bcf
2013-04-19run PythonTests with internal python tooMichael Stahl2-7/+5
... and use PYTHON_FOR_BUILD in the system python case. Change-Id: If3c3305ab4f613642bea9b775e4c7a602f5a476c TODO: needs testing on more platforms Reviewed-on: https://gerrit.libreoffice.org/3471 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19Handle the old syntax for GETPIVOTDATA.Kohei Yoshida1-30/+50
The old syntax is Calc only (not Excel), and is specified in ODF 1.2. Change-Id: I9551d408ae136d3567375e905b1273103a8f616a
2013-04-19Remove debug statements..Kohei Yoshida5-107/+3
Change-Id: I10e0ef90ea7bfd92b46a54dc3d3feff90e50f724
2013-04-19We can remove all this code now.Kohei Yoshida5-544/+0
This code is the old GETPIVOTDATA implementation, which actually parses the pivot table output on the sheet (ugh!) to get the right value. It was susceptible to the table output being configurable. Change-Id: Iefbefa06b91fc6cfa7a21f9a8031bf6841c1d936
2013-04-19Let's explain what this method returns.Kohei Yoshida1-0/+6
Change-Id: I2b081fe32d8851403867b9ad94de40bbe4b68838
2013-04-19Typo.Kohei Yoshida1-1/+1
Change-Id: I67c6c2fad73d81b7ac9a9d50280f323a1fe88aad