summaryrefslogtreecommitdiff
path: root/extensions
AgeCommit message (Collapse)Author
2015-10-21more removal of com::sun::star typedefsNoel Grandin
Change-Id: Ia73f1b4f1dcfa3f0936359e744afe76e02dcd2eb
2015-10-21boost::ptr_vector->std::vectorNoel Grandin
no need to manage uno::Reference via extra heap objects Change-Id: I3092b5103a31fcff8122e4ce9cd1cbb42f5ed910
2015-10-21remove untyped Link<>Noel Grandin
Change-Id: I809f9e10309ceadda0a82c3818277323b34ec61b Reviewed-on: https://gerrit.libreoffice.org/19491 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-20new loplugin: badvectorinitNoel Grandin
look for places calling the 1-argument vector fill constructor and then immediately called push_back, which is generally a sign that its leaving empty slots. Change-Id: I34e69b8d09cc48c0d409499faaf192b9f86bc517 Reviewed-on: https://gerrit.libreoffice.org/17525 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2015-10-20loplugin:defaultparamsStephan Bergmann
Change-Id: I1b3ffd418fb4e63bb4369fbc187494a87569556e
2015-10-19loplugin:defaultparamsStephan Bergmann
Change-Id: Ief9af764ce6e75a5f2cfdd33d836f007e0f52cd3
2015-10-19convert Link<> to typedNoel Grandin
Change-Id: I760bd9ad3d0da20c0ad38aace765a42983e28531
2015-10-19convert remaing DBG_WARNING to SAL_INFONoel Grandin
and drop the macro Change-Id: I452ca373d0c277166e94928c1bce78bf37e39d7c
2015-10-19convert Link<> to typedNoel Grandin
Change-Id: I66ad4562f33b68172557d759a26b9e19d19e2c0e
2015-10-19convert Link<> to typedNoel Grandin
Change-Id: I8c00bcdb718bcebbb15e24e1c1622cdc6b356787
2015-10-18cppcheck:noExplicitConstructorNoel Grandin
Change-Id: I2b68ba9e8caf7971efbba094ef060e72541bdccf Reviewed-on: https://gerrit.libreoffice.org/19426 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-17coverity#1327455 Uninitialized pointer fieldCaolán McNamara
Change-Id: Icc7405e5b68725e28447a1f2c1cbed2fbe6b8049
2015-10-17coverity#1327456 Uninitialized pointer fieldCaolán McNamara
Change-Id: I0d116989bdbda07995cca1c8062ea5b0c4292b28
2015-10-16convert Link<> to typedNoel Grandin
Change-Id: Icbba339dac0be31e30dff021bba06a219f8aecd6 Reviewed-on: https://gerrit.libreoffice.org/19405 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-15calling IsSet() before Call() on Link<> is unnecessaryNoel Grandin
the Call() already does a check Found with: git grep -A 1 -w 'IsSet()' | grep -B 1 '.Call(' | grep ':' | cut -d ':' -f 1 Change-Id: Ia7248f5d62640b75f705e539c3d1183e39c0d847
2015-10-15convert Link<> to typedNoel Grandin
Change-Id: I6c55c74d47b13149c2fa210bb9de4e8c430c57cc
2015-10-13error C2666: 'operator ==' : 2 overloads have similar conversionsStephan Bergmann
Change-Id: I7460e993851335db108a02afe2c147ee57736b0a
2015-10-13loplugin:mergeclasses, merge IControlContext with OBrowserListBoxNoel Grandin
Change-Id: Ib3e54c9fe8d9445ad799e4b06c41443093af87fb
2015-10-13remove some useless commentsNoel Grandin
found with git grep '// /' Change-Id: I948cf9ae61bbbf2ec706ca5b0572c4f27c58c745
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-10-12Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
2015-10-12convert Link<> to typedNoel Grandin
Change-Id: Iec15042138e0715459b2c9e872a7464d75a6b1eb Reviewed-on: https://gerrit.libreoffice.org/19305 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-12loplugin:stringconstantStephan Bergmann
Change-Id: I83078723ffc40bf16632df87da24ad2289867ed4
2015-10-12some small cleanupsNoel Grandin
Change-Id: I03221fd5e618155dc093dd4dd7474f516d63761e
2015-10-12now we can get rid of the convoluted ControlWindow templateNoel Grandin
Change-Id: I4365e5819784a26f4a71eab8a64cc53ef35d9ad1
2015-10-12now we can push the controlwindow down and lose some type-castingNoel Grandin
Change-Id: I3bc5963bad29898bd104feddef1bc1d00a1325e1
2015-10-12reduce the web of class relationships here a littleNoel Grandin
make CommonBehaviourControlHelper a base-class of the CommonBehaviourControl template, which allows us to dispense with the IModifyListener callback interface Change-Id: I3c02b864fa08fc50515c11af859477e0fdc035e3
2015-10-12improve naming of template parametersNoel Grandin
Change-Id: If62a86b914db634c662949a04396b95e3f44be2a
2015-10-12cppcheck:variableScopeNoel Grandin
Change-Id: I037feb335499629300309851dcda3bb661f03d4f Reviewed-on: https://gerrit.libreoffice.org/19316 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-07clang-analyzer-deadcode.DeadStoresStephan Bergmann
Change-Id: Id193a3fa8c3832da783f8647d6fc6db8375149f4
2015-10-07Sane::SetOptionValue return values are unusedStephan Bergmann
Change-Id: Ie9310be6508fe828ca1ef36372d56596a02085aa
2015-10-07loplugin:mergeclassesNoel Grandin
Change-Id: Ia19514d33fd025a1df9d26b94e2d39113d122392
2015-10-06loplugin:unusedmethodsNoel Grandin
Change-Id: I150baadc442e57ee604563bc52965daa9d2e41af
2015-10-01loplugin:unusedmethodsNoel Grandin
- improvements to the plugin to find more method calls - improvements to python script to remove more false+ - fix the FORCE_COMPILE_ALL build flag to include code in the $WORKDIR Change-Id: I4d6015dcb9b9d60c26f0bcee8abad807177a7836 Reviewed-on: https://gerrit.libreoffice.org/19064 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-01com::sun::star->css in extensions/Noel Grandin
Change-Id: I64af9f5ae444e1f7bc6c0e8c29df383a9531dba9
2015-10-01remove old standalone Sun bug numbersNoel Grandin
Sun bug numbers without any accompanying text are completely useless. Fixed with git grep -lP '//\s*#\d+#\s*$' | xargs perl -i -ne'/\/\/\s*#\d+#\s*$/d or print' And then hand-checking the result to restore places where it deleted code. And then some more grepping and hand-editing to kill the others. Change-Id: Ia96ce4466db8bb8da363ebf41f0ae7f45f28bf29 Reviewed-on: https://gerrit.libreoffice.org/19023 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-09-30Fix typosAndrea Gelmini
Change-Id: Iaa9dd3f02f21947742643349d3b878126017477d Reviewed-on: https://gerrit.libreoffice.org/18947 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2015-09-30 tdf#94559: second step to remove rtti.hxxOliver Specht
replaced use of PTR_CAST, IS_TYPE, ISA in chart2, connectivity, editeng, extensions, filter, forms, framework, idl Change-Id: I6a2f9d8bbccb07088413f7552af4b5af8f0cad99 Reviewed-on: https://gerrit.libreoffice.org/18920 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Oliver Specht <oliver.specht@cib.de>
2015-09-29Renamed wrongly prefixed boolean variablesStefan Heinemann
Fixed tdf#94269 Change-Id: I63109cc4e095bad680d7637a065080ea368860ae Reviewed-on: https://gerrit.libreoffice.org/18851 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2015-09-29loplugin:removeunusedmethods, remove unused stuffNoel Grandin
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
2015-09-24convert Link<> to typedNoel Grandin
Change-Id: I59d325c3b051690303a5841907317122fa1ec98b Reviewed-on: https://gerrit.libreoffice.org/18825 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-09-21convert Link<> to typedNoel Grandin
Change-Id: If3e2b00092440ebd42ae5b73ae2b0e44c3702683
2015-09-20convert Link<> to typedNoel Grandin
Change-Id: I10b050dc4aae45e646761a82520caa96969bc511 Reviewed-on: https://gerrit.libreoffice.org/18700 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-09-18boost->stdCaolán McNamara
Change-Id: Id55e334156628a916ce15fca8ec618eed0ae9366 Reviewed-on: https://gerrit.libreoffice.org/18683 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-09-17convert Link<> to typedNoel Grandin
Change-Id: Id600a5ee28440ee91c7089c8f7aa05f83bc0e63c
2015-09-17convert Link<> to typedNoel Grandin
Change-Id: I1ce46ea4784ecbd30a47d749d863173e0fe86fe6
2015-09-17convert Link<> to typedNoel Grandin
Change-Id: Iad25d514be71ea4d0f8d2b773197aa30371d776b
2015-09-17convert Link<> to typedNoel Grandin
Change-Id: I2f59aec574ed2c5120c554bdff13a9efab6992df
2015-09-17convert Link<> to typedNoel Grandin
Change-Id: I3d35a0bb75b6989dd13371543d1bdf3ef5f47641
2015-09-16convert Link<> to typedNoel Grandin
Change-Id: If6334d32abbec379acbb9def98fdf6cb5144238b