summaryrefslogtreecommitdiff
path: root/forms
AgeCommit message (Collapse)AuthorFilesLines
2014-08-14java: remove unused importsNoel Grandin3-5/+0
Change-Id: Ic60b30141fd1dc61acfb97b811aec680a2ab9c22
2014-08-14java: remove commented out codeNoel Grandin2-3/+0
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
2014-08-13remove unnecessary use of Java reflectionNoel Grandin1-28/+5
Change-Id: I1cbbd8ee34684ec0fd74cd59529276b31eb7d1c2
2014-08-13java: remove dead methodsNoel Grandin8-165/+11
found by UCDetector Change-Id: I219caa8e680dba5a395541a778df6144841c4dde
2014-08-13update_pchThomas Arnhold1-0/+1
Change-Id: Ic1dae7aac2f4367b4196ba3128c0aea9be1fbbda
2014-08-13java: reduce scope, make some methods privateNoel Grandin4-8/+8
found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e
2014-08-13java: reduce scope, make member classes privateNoel Grandin1-1/+1
found by UCDetector Change-Id: Ief32d078090102b14b60b35fc36542f8d4fb252b
2014-08-13java: reduce scope, make fields privateNoel Grandin1-1/+1
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
2014-08-13java: reduce scope, make constructors privateNoel Grandin1-1/+1
found by UCDetector Change-Id: If05277fd2fe77ceabb4c7c87aeb8569e3406102d
2014-08-12java: fix broken javadoc tagsNoel Grandin2-8/+4
Change-Id: I43d25ba49b758739ee8dc891b0db3e527004ec8b
2014-08-12java: remove useless javadoc tagsNoel Grandin3-23/+7
that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin14-0/+33
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
2014-08-11java: remove unused parametersNoel Grandin1-2/+2
Change-Id: Ifc44c51ddbd21fabaad686bc3d38e2dab54d97aa
2014-08-11java: remove unused parametersNoel Grandin1-4/+0
Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5
2014-08-08java: remove exceptions from throws clauses that are notNoel Grandin7-10/+9
.. actually thrown Change-Id: Ia326ac7f82e11b948ed0f34e20908a96e7adcd10
2014-08-08java: remove redundant null checksNoel Grandin1-1/+0
Change-Id: Ia42e5ed715fbd3f5b84029a9844da55f307c6260
2014-08-08java: remove unnecessary semi-colonsNoel Grandin6-6/+6
Change-Id: Ibeeefc6e6ee8f7bed97a02f569f239ff035d38c4
2014-08-08java: remove unused importsNoel Grandin1-1/+0
Change-Id: Idbba5bb89bee4d88ed0306d5151e238a1bc19cec
2014-08-08java: remove dead methodsNoel Grandin1-16/+0
Change-Id: I9f2e705fd603a7c8832c0f0772bee9f395380a0d
2014-08-05java: remove commented out codeNoel Grandin1-5/+0
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
2014-08-05java: remove unused fieldsNoel Grandin2-3/+0
Change-Id: I6c93864f501f646a8940eac221a88c87b3f75525
2014-08-04java: remove some casting in lib.TestParameters#getMSFNoel Grandin8-8/+8
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-07-26coverity#706541 Uncaught exceptionCaolán McNamara2-6/+9
and coverity#706537 Uncaught exception Change-Id: I403d83bb7aa4cf82edf1b6c608f9daac31576208
2014-07-11new loplugin: externalandnotdefinedNoel Grandin2-6/+9
Find "missing headers," where a function is declared directly in the .cxx (as extern) and not defined, and should arguably instead be declared in an include file. Change-Id: I6d83ee432b2ab0cd050aec2b27c3658d32ac02a2
2014-07-10use SimpleReferenceObject in forms moduleNoel Grandin4-75/+7
to replace hand-rolled version Change-Id: Ic95f4dfd1ae5ab414c68c52ad58c738f4ac1d9d1
2014-07-03use assert when followed by derefCaolán McNamara1-1/+1
Change-Id: I8405e4d8f9fa1de3ef6ee474321b4ac2b4ce1624
2014-07-01New loplugin:stringconcatStephan Bergmann1-1/+1
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
2014-06-29Typo: beeing->beingJulien Nabet2-2/+2
Change-Id: I34937e400ac8576154d33e1e11b80690222f532c
2014-06-25fixes for up-casting to Reference<XInterface>Noel Grandin1-1/+1
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-25remove spurious com::sun::star::chaosMichael Stahl1-1/+1
Apparently some time before inital CVS import a global search-and-replace went horribly wrong and added spurious namespace prefixes everywhere. Change-Id: I4009bc3ab4b1d4c80412f75ad0e4628a382f99f0
2014-06-24coverity#706547 Uncaught exceptionCaolán McNamara2-4/+2
Change-Id: Ib619e1ab3f091c04ec27a249b733e54ce469cf82
2014-06-17rtl::Reference fits just fine hereStephan Bergmann3-4/+3
Change-Id: Icb1ba7f7068f60c4bd5eda7002415214b3d885f3
2014-06-17improve the inlinesimplememberfunctions clang pluginNoel Grandin14-133/+28
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
2014-06-13loplugin:staticcallStephan Bergmann11-21/+21
Change-Id: I3c43c34e66772ce7e42b42be04e0591f2e78ec01
2014-06-09loplugin: inlinesimplememberfunctionsNoel Grandin10-55/+16
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
2014-06-05forms: remove SAL_THROW macroNoel Grandin15-22/+21
Change-Id: I532f29e240cf29c5e65c919c4bcaccd86c510ce9
2014-06-04forms: expand DECLARE_XCLONEABLEThomas Arnhold24-27/+23
Change-Id: I2a468e40489797e33935b79a27459ab408558124
2014-06-04forms: expand DECLARE_DEFAULT_DTORThomas Arnhold2-9/+4
Change-Id: I52b091402ec23f9c5eb87ae2212cc5b4986c6435
2014-06-01Fixed lower case typo in header guard definitionJens Carl1-3/+3
Change-Id: Ib4f09892850bfcb72ddec0b0a924746495c5551f Reviewed-on: https://gerrit.libreoffice.org/9579 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-30fdo#68849: Add header guards to all include filesJens Carl4-0/+20
Added header guard to files in directories forms/ and fpicker/ Change-Id: I5a3a2b1f2aa81d048959cb3223e03ac985539f33 Reviewed-on: https://gerrit.libreoffice.org/9557 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-29remove more unnecesary OUString constructor useNoel Grandin2-2/+2
when throwing exceptions Change-Id: I6edfb6b6745499f802b0e3c0e096a36fb7c32aac
2014-05-27remove unnecessary use of Reference constructor in throwNoel Grandin1-1/+1
Convert code like this: throw IOException("xx", Reference< XInterface >(static_cast<OWeakObject*>(this)) ); to this: throw IOException("xx", static_cast<OWeakObject*>(this) ); Change-Id: Ife9f645f0f1810a8e80219126193015502c43dbb
2014-05-27Remove unnecessary semicolonsPeter Senna Tschudin2-2/+2
A simplified version of the semantic match that finds this problem is follows: (http://coccinelle.lip6.fr/) // <smpl> @r1@ statement S; position p,p1; @@ S@p1;@p @script:python r2@ p << r1.p; p1 << r1.p1; @@ if p[0].line != p1[0].line_end: cocci.include_match(False) @@ position r1.p; @@ -;@p // </smpl> Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e Reviewed-on: https://gerrit.libreoffice.org/9493 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-25Remove ASCII art, useless comments and whitespace from forms moduleChris Laplante110-645/+22
Change-Id: Ib6157a493092a137a6b0bf5b96d0e760d307f9da Reviewed-on: https://gerrit.libreoffice.org/9472 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet13-33/+33
Change-Id: If87cdfb2c605254f6d69baa4ca5aec09091caa68
2014-05-19hrc and src files: squeeze multiple newlinesThomas Arnhold4-9/+0
for i in `find . -name *.src -or -name *.hrc`; do FILE=$(cat -s "$i"); echo "$FILE" > "$i"; done Change-Id: I2bac5ad3e1eb3c566e5c867ccf45893a19e1561e
2014-05-14Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part12Julien Nabet8-17/+17
Change-Id: I7c514b7a1d86f52d77672b826b1f08b825fd7aa7
2014-05-10Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part9Julien Nabet2-3/+3
Change-Id: I82ed4a4868cb22566706ca0f4b1321e0d45016cf
2014-05-09update_pch: add a bunch of pch filesThomas Arnhold6-10/+385
I had to fix some source files because of macro redefinitions and such stuff. Small modules like basic have a great win, too: make basic.clean && time make basic: with w/o pch pch accessibility 23s 1m59s basctl 30s 1m42s basic 56s 1m35s comphelper 23s 51s editeng 48s 2m04s forms 40s 1m40s unotools 19s 38s sd 3m37s 4m33s Change-Id: Id24cdcddbe2ff64820b42266325c25af1355558f Reviewed-on: https://gerrit.libreoffice.org/9293 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-08various: sal_Bool->boolNoel Grandin1-4/+4
Change-Id: I30fa5227f30373f95060148f269450d2945c1bb9