summaryrefslogtreecommitdiff
path: root/ucb
AgeCommit message (Collapse)AuthorFilesLines
2014-09-12ucb: prevent out of bound access in OUStringNorbert Thiebaud1-1/+1
Change-Id: I451bf13cbf39ec13152d083a6a6728cd043f9fbd
2014-09-11ucb: sal_Bool -> boolStephan Bergmann6-9/+9
Change-Id: I333ffa13159eac5cc53c9f3985dde5a33daf8067
2014-09-10fdo#55380 replaced use of obsolete interfacesDaniel Sikeler2-18/+18
Change-Id: I94fed6a9361f21457b3e631efffc0db833068aef Reviewed-on: https://gerrit.libreoffice.org/11256 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-08-28Fix *_component_getFactory function typeStephan Bergmann1-2/+2
Change-Id: I6b7a9e15da83f1d53a5e59d26b643c363e652619
2014-08-25set names on a bunch more threads...Michael Stahl1-0/+2
Change-Id: I4c2f2f0bcce52839033876ec991529721e06a3c8
2014-08-19java: use 'Short.valueOf' instead of 'new Short'Noel Grandin1-1/+1
Change-Id: Icef19ef61ee0af2dd3bda527263934006271f219
2014-08-19java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin1-1/+1
Change-Id: Ia8befb8d69914ce971174fc5f2ffc0e2f506a940
2014-08-19java: classes in java.lang package do not need to be fully qualifiedNoel Grandin1-1/+1
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
2014-08-14java: remove unused importsNoel Grandin3-3/+0
Change-Id: Ic60b30141fd1dc61acfb97b811aec680a2ab9c22
2014-08-14java: remove commented out codeNoel Grandin2-25/+0
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
2014-08-13java: remove unused interfacesNoel Grandin1-4/+0
found by UCDetector Change-Id: Ide8b3b5c9969048aff84eed16b9eea096abad349
2014-08-13java: remove unused fieldsNoel Grandin3-4/+4
found by UCDetector Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
2014-08-13java: reduce scope, make member classes privateNoel Grandin1-2/+2
found by UCDetector Change-Id: Ief32d078090102b14b60b35fc36542f8d4fb252b
2014-08-13java: reduce scope, make fields privateNoel Grandin9-19/+19
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
2014-08-12java: remove useless javadoc tagsNoel Grandin1-8/+0
that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin2-0/+3
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
2014-08-08java: variable cannot be nullNoel Grandin1-14/+9
remove null check where null-analyis reveals the variable cannot be null Change-Id: Ied0a24665514bbf68c2ed5f15af9e5c2232a8033
2014-08-08java: remove unnecessary semi-colonsNoel Grandin1-2/+2
Change-Id: Ibeeefc6e6ee8f7bed97a02f569f239ff035d38c4
2014-08-08java: remove unused importsNoel Grandin2-5/+0
Change-Id: Idbba5bb89bee4d88ed0306d5151e238a1bc19cec
2014-08-08java: remove dead methodsNoel Grandin2-62/+0
Change-Id: I9f2e705fd603a7c8832c0f0772bee9f395380a0d
2014-08-05java: remove commented out codeNoel Grandin5-40/+0
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
2014-08-05java: remove unused fieldsNoel Grandin5-17/+0
Change-Id: I6c93864f501f646a8940eac221a88c87b3f75525
2014-08-04java: remove some casting in lib.TestParameters#getMSFNoel Grandin1-1/+1
where the return value is always cast to XMultiServiceFactory, so just do the cast in the method and avoid noise at the call sites. Change-Id: I3a2e06ac6edb3c6021eda6442032db57aaa22e13
2014-08-04fix spelling compilant -> compliantNoel Grandin3-3/+3
Change-Id: I5a469226a576906f0dd860c008d2e3fab1659ff7
2014-07-28Linked the sax library to CMISMihai Varga1-0/+1
This is needed for the use of DateTime converter. I forgot to add the makefile when I commited this patch: https://gerrit.libreoffice.org/#/c/10586/ Change-Id: I7cb9ab40fab549a95beb6818ab4ad4befdd3dea1
2014-07-28UNO to CMIS properties conversion fixMihai Varga1-13/+50
The initial code always extracted Strings from the UNO instead of extracting the same data type that was written into it. This patch extracts the properties according to their data type and formats them to be reconstructed into CMIS properties. Change-Id: Ib160020e9d923a46e2c4f90924da847f2dac5e7a Reviewed-on: https://gerrit.libreoffice.org/10586 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
2014-07-25Avoid possible memory leaks in case of exceptionsTakeshi Abe9-28/+32
Change-Id: I9983e858c4e634b4cac8ad42fa9b06b7ccc167d6
2014-07-17fdo#72277: don't build and use nsspem when building against system curlCédric Bosdonnat2-0/+8
System CURL will know how to get the CA bundle from the system openSSL. There is no need to have internal NSS CA database support. Change-Id: Ie5074c78f7d78b2c2f452d4d4e11c98222529883
2014-07-15fdo#72277: Use NSS CACERT in cmis ucp with internal curlCédric Bosdonnat2-0/+28
This fix contains two parts: * initialize NSS in the CMIS UCP right before sending an HTTP request in case internal curl is used. This makes internal curl find the NSS CACERT database from the user mozilla profile. * add nsspem to allow curl to use CACERTs from libnssckbi. Without libnsspem curl is unable to read the certificates from the NSS database. The nss-pem code has been extracted from the fedora-hosted repository: https://git.fedorahosted.org/cgit/nss-pem.git Change-Id: Ie8dedf020480cca01bf9761382886566a1150778
2014-07-11webdav: Do not return reference here.Matúš Kukan2-4/+4
This was missing in e07cefb4f7ba39d59d25815e208ed61269079142. Change-Id: I1c9a3f88981ee67d9d5748f9e43eed1237422fb1
2014-07-08webdav: fix locking in webdav_ucp::Content::getResourceType()Matúš Kukan1-1/+11
This commit cherry-picks 49a454225e35699d7351faaba3d296e1858c6107 for serf webdav version. Change-Id: Ic5aba4fba8f8a2a521224b08865500dd932e85bf
2014-07-02InteractionSupplyName is a detail of SimpleNameClashResolveRequestStephan Bergmann1-0/+1
Change-Id: Iecc77b1c4749bd14ce79f1a7f3e98f45fa3abbba
2014-06-29Typo: conteiner->containerJulien Nabet1-1/+1
Change-Id: Idf1294c7da00621900d41c16473b862ee8fc502d
2014-06-25fixes for up-casting to Reference<XInterface>Noel Grandin3-6/+6
Fix regressions introduced with 6a043e9c0acff20e1618ca8ec15c21d5d0fd0d37 "Use the new type-checking Reference constructor to reduce code noise" Change-Id: I85662856f21c810a7db497fe3b0e116f075b1687 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-06-24webdav: Do not call into DAVResourceAccess with mutex locked.Matúš Kukan1-52/+64
This commit cherry-picks 0c3500115c4fd86284a027fc32be704afcf77061 for serf webdav version. Change-Id: I108b0068cad847bf4947ece5e690f789ef034ae9
2014-06-24fdo#72157: webdav: Release WebDAV file lock on document close.Matúš Kukan5-0/+15
Make it work with both serf and neon version. Change-Id: I3c74ba57cde19f4417d0229c1c809756e3c5f9f8
2014-06-24new compilerplugin returnbyrefNoel Grandin2-8/+8
Find places where we are returning a pointer to something, where we can be returning a reference. e.g. class A { struct X x; public X* getX() { return &x; } } which can be: public X& getX() { return x; } Change-Id: I796fd23fd36a18aedf6e36bc28f8fab4f518c6c7
2014-06-23webdav: Do not throw when saving new document.Matúš Kukan2-7/+12
Propagate information about !shouldAccessNetworkAfterException from getResourceType out to getPropertyValues, to avoid further calls which would result in cancelCommandExecution, when trying get properties of document which does not exist yet, but we want to create it. This was done in webdav-neon for other reasons as part of 0c3500115c4fd86284a027fc32be704afcf77061. Change-Id: Ia434a707d2946a6982075f9bf53904b78dc07a5e
2014-06-17improve the inlinesimplememberfunctions clang pluginNoel Grandin2-20/+4
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
2014-06-13loplugin:staticcallStephan Bergmann1-2/+2
Change-Id: Ida0a95c181a02b4fb0e0b40684a2279923338700
2014-06-10coverity#707429 Uncaught exceptionCaolán McNamara2-3/+5
Change-Id: I745028d5bfbb6b1152abf6e0fe4dbc9c697b5d4b
2014-06-09loplugin: inlinesimplememberfunctionsNoel Grandin8-41/+7
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
2014-06-05ucb: move APR dependencies to gb_LinkTarget__use_aprMichael Stahl1-5/+0
Change-Id: I6768e5f2400f3020d85c48b80d58e13a3f6f07e9
2014-06-05apr uses iconvTor Lillqvist1-0/+1
Change-Id: Ic92ab1c2b5298cd1611bc9786647fe30ad0847a9
2014-06-05ucb: remove SAL_THROW macroNoel Grandin16-33/+32
Change-Id: I023c342b0f086e57c821136498851999fb0152ec
2014-06-04compareTo -> equalsNoel Grandin9-17/+13
convert OUString::compareTo usage to equals to startsWith where it is more appropriate Change-Id: I6f5b5b7942429c0099ad082ba4984fd18e422121
2014-06-04compareToAscii -> equalsAsciiNoel Grandin1-2/+1
convert places using compareToAscii that should be using equalsAscii Change-Id: I97b4da7f6e867c3967b2f65b70d6886f83b4a4e5
2014-06-02coverity#707427 Uncaught exceptionCaolán McNamara1-1/+2
Change-Id: Ic381e74ffd862ab4d94f9d3ada02af05b30e6484
2014-06-02coverity#707428 Uncaught exceptionCaolán McNamara2-3/+5
Change-Id: I7e30f163743fc6bd05b5e795b299a76e0c51d8c0
2014-06-02coverity#707430 Uncaught exceptionCaolán McNamara2-3/+5
Change-Id: I56269273b20ac48fca5a2abeb2ba2cbf7d1da0c8