summaryrefslogtreecommitdiff
path: root/ucb
ModeNameSize
-rw-r--r--JunitTest_ucb_complex.mk824logplain
-rw-r--r--JunitTest_ucb_unoapi.mk892logplain
-rw-r--r--Library_cached1.mk1013logplain
-rw-r--r--Library_srtrs1.mk782logplain
-rw-r--r--Library_ucb1.mk1127logplain
-rw-r--r--Library_ucpcmis1.mk1158logplain
-rw-r--r--Library_ucpdav1.mk1989logplain
-rw-r--r--Library_ucpexpand1.mk751logplain
-rw-r--r--Library_ucpext.mk978logplain
-rw-r--r--Library_ucpfile1.mk1231logplain
-rw-r--r--Library_ucpftp1.mk1239logplain
-rw-r--r--Library_ucpgio1.mk1122logplain
-rw-r--r--Library_ucpgvfs1.mk1015logplain
-rw-r--r--Library_ucphier1.mk1210logplain
-rw-r--r--Library_ucppkg1.mk1057logplain
-rw-r--r--Library_ucptdoc1.mk1193logplain
-rw-r--r--Makefile478logplain
-rw-r--r--Module_ucb.mk1053logplain
-rw-r--r--README444logplain
d---------qa67logplain
d---------source190logplain
d---------test / com / sun / star / comp / ucb30logplain
d---------workben65logplain
Lillqvist Change-Id: I637544c19c407389041343c951e7cbb7129bc1a2 2015-12-20Change a local DBG macro to SAL_INFOTor Lillqvist But actually, I am starting to lean more and more towards the opinion that very little of our debug output code is actually useful to keep in the sources permanently. When somebody wants to debug some part of the code, they will very likely want to add much more detailled tracing anyway, temporarily. Change-Id: I6a60a130e3b72ba3d6ad32a1b22a2a9f3ac66b27 2015-12-20Cosmetic cleanupTor Lillqvist Change-Id: I68511f33c13fa8277219a170e10821f9d0ee9ecf 2015-12-20Bin silly DBG macro used in two not that interesting casesTor Lillqvist I did not bother changing this to SAL_INFO, no need to keep debug output like that in the code permanently. Change-Id: I59fe193e291cdd662e7cd7ecdb26d354aee60c80 2015-12-12Make .mk files more portableBaptiste Daroussin Replace some -ldl by $(DLOPEN_LIBS) Add some FREEBSD tests Change-Id: Ic30fe29b938d877694db2927775f89de15c02d87 Reviewed-on: https://gerrit.libreoffice.org/20652 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Matúš Kukan <matus@libreoffice.org> 2015-12-10loplugin:nullptr: More NULL -> nullptr automatic rewriteStephan Bergmann Change-Id: Ie83819e2bcdc5fa160b39296b005ca9a5ff74b1d 2015-11-28Use Get/SetWindowLongPtr, for 64-bit buildStephan Bergmann Change-Id: I3041d93f98e491e4600da78a0d1f6100be1177a7 2015-11-28-Werror,-WreorderStephan Bergmann Change-Id: I202fee919179c89101a7f2b8a802e14254d768e2 2015-11-28Use Get/SetWindowLongPtr, for 64-bit buildStephan Bergmann Change-Id: I6d763369aa0c142ec0b0b9fb08aeb212eaae7f2f 2015-11-28-Werror,-Wint-to-pointer-castStephan Bergmann Change-Id: Iec98a5a3df5dcfcd3fcf658bf27e9b5fe57ffc44 2015-11-17other #includes should be AFTER the include-once #defineNoel Grandin found with the following script: git ls-files *.hxx | xargs perl -0777 -ne 'if (/include.* .* .* "; close ARGV }' Change-Id: I3afb0e81eb315c34bc0eb6bb4733dd1f0537d5c0 2015-11-17Don't assume sal_Unicode is unsigned shortStephan Bergmann Change-Id: I7fcaa4e86f264182db7f4e46c2388402f801531a 2015-11-16use initialiser list for Sequence<OUString>Noel Grandin Change-Id: Ia5e47261d1fc6fac2d046656c05a1c5eedb07e02 Reviewed-on: https://gerrit.libreoffice.org/19978 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> 2015-11-15use initialiser for Sequence<OUString>Noel Grandin using variations of: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<OUString> (\w+)\(1\)\; \s*OUString\* pArray.*; .*\[0\]\s*=\s*(\S+)\;/Sequence<OUString> \1 { \2 };/g" Change-Id: I03c64334ff30ee14dce0d17b67f5122a3893bbe3 Reviewed-on: https://gerrit.libreoffice.org/19971 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com> 2015-11-15use initialiser for Sequence<OUString>Noel Grandin replaced using: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<\s*OUString\s*> (\w+)\(\s*1\s*\); .*\[0\] = (\S+);/Sequence<OUString> \1 { \2 };/g" Change-Id: I20ad0489da887a9712982531c3b127339bb8b3b9 Reviewed-on: https://gerrit.libreoffice.org/19969 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> 2015-11-15use initialiser syntax for Sequence<OUString>Noel Grandin replaced using the script: git grep -lP 'Sequence.*OUString.*\(1\)' | xargs perl -0777 -pi -e "s/Sequence< OUString > (\w+)\(1\); .*\[0\] = (\S+);/Sequence< OUString > \1 { \2 };/g" Change-Id: I23688a91562051a8eed11fc2a85599545c285c34 Reviewed-on: https://gerrit.libreoffice.org/19967 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>