Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-03 | WaE: unchecked results from write/fwrite | Caolán McNamara | |
Change-Id: Ia7943a132d05e596550bd71878b54b2825c31987 | |||
2012-04-29 | make gbuild the default assumption of build.pl | Bjoern Michaelsen | |
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b | |||
2012-04-24 | WaE: implicitly declaring C library function 'objc_msgSend' | Tor Lillqvist | |
2012-04-23 | lp#527938: triple paperbag -- tweak bibloader again | Bjoern Michaelsen | |
2012-04-21 | fill in some sane defaults on read/write failure | Caolán McNamara | |
2012-04-21 | WaE: extensions warnings fixed | David Ostrovsky | |
2012-04-16 | WaE: ignoring #pragma warning | David Tardon | |
2012-04-09 | gbuild: simplify and unify gb_Helper_*native* | Matúš Kukan | |
2012-04-09 | enforce only one possible use of gb_CustomTarget | Matúš Kukan | |
This brings two changes: - no more recursive calling of make - gbuild_simple is now not used => removed | |||
2012-04-09 | add package deps for resources | David Tardon | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | rename gb_CppunitTest_uses_ure | David Tardon | |
2012-04-08 | compile- and run-time use of UNO must be split | David Tardon | |
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk | |||
2012-04-08 | simplify use of configuration from unit tests | David Tardon | |
2012-04-08 | always use --protector for UNO tests | David Tardon | |
2012-04-08 | drop uses_ure | David Tardon | |
2012-04-08 | let use_api handle the use of type rdbs at runtime | David Tardon | |
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime? | |||
2012-04-08 | extensions: add np_sdk_inc to mozilla_headers external | Michael Stahl | |
2012-04-08 | gbuild: "use" vs. "add": | Michael Stahl | |
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-05 | Clean up optional online update module | Stephan Bergmann | |
* The updatecheckui lib is part of that module; should its scp entry also be marked ComponentCondition="ISCHECKFORPRODUCTUPDATES=1"? * unpack_update (and other scripts as well?) need only be generated if ENABLE_ONLINE_UPDATE. * It is inconsistent that there is a distinct onlineupdate.xcd not merged into main.xcd, while the updchk and updatecheckui component files are merged into the global services.rdb. * The updchk res file should also go into (a resource sub-module of) the optional online update module. | |||
2012-04-05 | UniString::CreateFromInt32 -> rtl::OUString::valueOf | Caolán McNamara | |
2012-04-04 | fix so_activex_idl, part two | Matúš Kukan | |
The order seems to be important here. However it has worked for me and I am not sure this will fix tinderboxes. | |||
2012-04-04 | fix so_activex_idl, part one | Matúš Kukan | |
2012-04-04 | extensions: use CustomTarget makefiles | Matúš Kukan | |
2012-04-02 | always pass --headless to cppunits | Luboš Luňák | |
They should not need any actual UI anyway, and most of them already pass the option manually. http://lists.freedesktop.org/archives/libreoffice/2012-March/029109.html | |||
2012-03-23 | Hop, a logical error | Fridrich Štrba | |
2012-03-23 | Move spotlight plugin out of minizip | Fridrich Štrba | |
2012-03-20 | reduce UniStrings | Caolán McNamara | |
2012-03-19 | remove fiddly casts, add few const where appropriate | Luboš Luňák | |
2012-03-16 | logical || -> binary | | Luboš Luňák | |
2012-03-16 | Introduced SystemShellExecuteFlags::URIS_ONLY | Stephan Bergmann | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan Bergmann | |
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed. | |||
2012-03-12 | extensions: split out static library from npsoplugin | Michael Stahl | |
2012-03-12 | extensions: split out static library for X11 plugin connection stuff | Michael Stahl | |
2012-03-12 | Fix WITH_OPENLDAP case | Stephan Bergmann | |
2012-03-10 | extensions: export npsoplugin's symbols | Matúš Kukan | |
2012-03-09 | Fix tools->bibliography database, brown paper bag over head commit :-) | Caolán McNamara | |
2012-03-09 | fdo#46847 fix build of so_activex.rc | Andras Timar | |
Use \ instead of / in path, but more importantly, use relative path, because '-' in path caused build error. Path was truncated right before the '-'. We could have put it between quotes, but then the SO_ACTIVEX_TLB_DIR define would not be substituted, so instead of hacking of the rc, I chose this solution. e | |||
2012-03-07 | Use just one resource file for npsoplugin | Tor Lillqvist | |
2012-03-06 | lp#527938, debian#602953, fdo#33266, i#105408: do not crash on clicking ↵ | Bjoern Michaelsen | |
bibliography when base isnt installed | |||
2012-03-05 | fix path | David Tardon | |
2012-03-04 | fdo#46847 use windows style path for midl.exe | Andras Timar | |
2012-03-04 | fdo#46847 typo in midl command line | Andras Timar | |
2012-03-04 | fix building of so_activex (fdo#46847) | David Tardon | |
2012-03-04 | use custom target for copying sources | David Tardon | |
2012-03-03 | build nsplugin also without mozilla as in 3-5 branch | Matúš Kukan | |
2012-03-02 | fdo#46501: Cleanup SimpleResMgr | Szabolcs Dezsi | |
2012-03-01 | New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem | Stephan Bergmann | |
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem. |