summaryrefslogtreecommitdiff
path: root/sc/inc/viewuno.hxx
AgeCommit message (Collapse)Author
2017-07-04loplugin:unusedfields in sc part3Noel Grandin
Change-Id: I7323e8644e5d336d52fa21b063264b0847b5e780 Reviewed-on: https://gerrit.libreoffice.org/39064 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-04-04tdf#39468 Translate German commentsJens Carl
First run of translating German comments and terms in sc/ Change-Id: I9802df334259edcea148bead95cc98a8057b91a1 Reviewed-on: https://gerrit.libreoffice.org/35994 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2017-01-26Remove dynamic exception specificationsStephan Bergmann
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-01-19New loplugin:dynexcspec: Add @throws documentation, scStephan Bergmann
Change-Id: Ieb01ae3f8c5d3010354027ea2c6e0a2cee176e7f
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark overriding destructors as 'virtual'" appears to no longer be a problem with MSVC 2013. (The little change in the rewriting code of compilerplugins/clang/override.cxx was necessary to prevent an endless loop when adding "override" to OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager(); in chart2/source/inc/LifeTime.hxx, getting stuck in the leading OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.) Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e
2016-08-29loplugin:countusersofdefaultparamsNoel Grandin
Change-Id: I26f46ddac3d7d810ebfa1c3e7f1a77427369828e Reviewed-on: https://gerrit.libreoffice.org/28451 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2016-04-26C++11: disable ctors instead of not implementing them (sc)Jochen Nitschke
replace the old declare and don't implement pattern with C++11 delete keyword Change-Id: I96c71d512d8dab4ad7c806c2e871604163fc49c1 Reviewed-on: https://gerrit.libreoffice.org/24399 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
2015-10-28com::sun::star->css in scNoel Grandin
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
2015-10-26boost::ptr_vector->std::vectorNoel Grandin
no need to store uno::Reference objects on the heap Change-Id: I015c9c4f89a5520e874f4bf523129682d7da579c
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
2015-03-23loplugin:constantfunction: scNoel Grandin
Change-Id: Id3268114041575d7dbb84e8d963ead566c78b928
2015-03-05V801: Decreased performanceCaolán McNamara
Change-Id: I48c716d87ce3e46f61393ae140bf2e05d9fd6241
2014-06-25remove whitespaceMarkus Mohrhard
Change-Id: Ib15413e73409cc33de01fa92a47b9d1237cfc4b2
2014-05-11fix-includes.pl: scThomas Arnhold
Change-Id: Iade3fedac5d2f8e978b7dd9c30f001d7d1564946
2014-04-19fixincludeguards.sh: scThomas Arnhold
sorry, huge one...
2014-04-03remove unnecessary scope qualifier from sal_Bool usesNoel Grandin
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2014-02-25coverity#737726 Uncaught exceptionCaolán McNamara
Change-Id: Ia6a53ea7d073e22620b7e85eafc27f35f6291709
2014-02-25coverity#737725 Uncaught exceptionCaolán McNamara
Change-Id: If66782ee4cac491a3115b6274258be533dbf2f4b
2014-02-25coverity#737724 Uncaught exceptionCaolán McNamara
Change-Id: Ie1b51865e9c3e0e30b33152ec4b400c703007a57
2014-02-25coverity#737723 Uncaught exceptionCaolán McNamara
Change-Id: I0026fc7811469eae3f62b531ad1626a6af1f743c
2014-02-25coverity#737722 Uncaught exceptionCaolán McNamara
Change-Id: I8fc0f9851c46e810f00cd88898e1dc6aa5005c75
2014-02-25coverity#737721 Uncaught exceptionCaolán McNamara
Change-Id: Ibc5e4532a451829a6e6113c42d9013017205ba70
2014-02-14sal_Bool->boolNoel Grandin
Change-Id: If14d545458a9071ab84de21cd98e05d562889ef8
2014-02-06coverity#1038464 Uncaught exceptionCaolán McNamara
Change-Id: Ic811b66b7b3ac204ee894fd0931bb96cce11fd8c
2014-01-29coverity#737711 Uncaught exceptionCaolán McNamara
Change-Id: Ie33feecf4116d15c500d104ec0787d496d532710
2014-01-29coverity#1158308 Uncaught exceptionCaolán McNamara
Change-Id: If099f099687f3157f9037c6b6e54ae0c4241f47e
2014-01-29coverity#1158309 Uncaught exceptionCaolán McNamara
Change-Id: I892bff01a53629ab4d6f5e96ab4c408ab6214849
2014-01-29coverity#1158310 Uncaught exceptionCaolán McNamara
Change-Id: I38fcbe9aa35283b9287962a2974365ceb29df37c
2014-01-29coverity#1158311 Uncaught exceptionCaolán McNamara
Change-Id: Idbfe94b889023a9132db659d528109f260b8fa01
2014-01-29coverity#1158312 Uncaught exceptionCaolán McNamara
Change-Id: Ic9f49d79474c0c7f5a04bec499e05bd48aad0f3a
2014-01-29coverity#1158313 Uncaught exceptionCaolán McNamara
Change-Id: Ice180d260685f6c9971a5daec18bf98b329bd4be
2014-01-29coverity#1158314 Uncaught exceptionCaolán McNamara
Change-Id: Icaaaf9eab3dfd9c15f64b60f2fd3a571c5a09888
2014-01-29coverity#1158315 Uncaught exceptionCaolán McNamara
Change-Id: Id0bc9f0f1fd6c8653e41a9e8c5319ab013416102
2014-01-29coverity#1158316 Uncaught exceptionCaolán McNamara
Change-Id: Ia696a7e1a4474bd0dc45db0bec951070c294da77
2014-01-29coverity#1158317 Uncaught exceptionCaolán McNamara
Change-Id: Ic725ffdc2041325b951b4790c2166d25053f7df2
2014-01-29coverity#1158318 Uncaught exceptionCaolán McNamara
Change-Id: Ia0bfd736262e9c22b18c094defee0779e8ce6515
2014-01-24coverity#1158387 Uncaught exceptionCaolán McNamara
Change-Id: I8a058e4f5ef988f527c266926dcb7c1fd7d66a40
2014-01-24coverity#1158388 Uncaught exceptionCaolán McNamara
Change-Id: Iac1719c5ea44369c7c0c323a0784a320af5d4e5a
2014-01-23coverity#1158408 Uncaught exceptionCaolán McNamara
Change-Id: Ie0a3cfeedeb386e72749997e6a4bdf8b6c515be2
2013-10-04convert sc/inc/view*.hxx from String to OUStringNoel Grandin
Change-Id: I15930932205fc39322a9e88b1739a741781a0e96
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2013-04-05fix selection change event firingNoel Power
Change-Id: I64e8b684dd5462e1a742ba47b5480951b4e3a4c4
2012-12-04re-base on ALv2 code. Includes:Michael Meeks
Patches contributed by Herbert Duerr i#118735 prevent endless loop if vlookup/hlookup doesn't find anything http://svn.apache.org/viewvc?view=revision&revision=1239673 Patches contributed by Andre Fischer remove lp_solver http://svn.apache.org/viewvc?view=revision&revision=1199180 i#118160: Added external CoinMP library. http://svn.apache.org/viewvc?view=revision&revision=1233909 Patches contributed by Armin Le-Grand i#118485 - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 i#118524: apply patch, followup fixes to 118485 http://svn.apache.org/viewvc?view=revision&revision=1186077 Patches contributed by lihuiibm i#108860 - Fix range validation. http://svn.apache.org/viewvc?view=revision&revision=1242846 i#118954 Chart data will lost after copy to different file http://svn.apache.org/viewvc?view=revision&revision=1301345 Patches contributed by Ariel Constenla-Haile Fix Linux build breaker: extra qualification on member http://svn.apache.org/viewvc?view=revision&revision=1301591 i#118696 - i#118697 - Fix some Sheet Tab Color API issues http://svn.apache.org/viewvc?view=revision&revision=1225428 i#118697 - Fix uninitialized variable http://svn.apache.org/viewvc?view=revision&revision=1225859 i#118771 - ScUndoImportTab should preserve tab background color http://svn.apache.org/viewvc?view=revision&revision=1230356 i#118921 - Repaint linked sheet tab background color after updating link http://svn.apache.org/viewvc?view=revision&revision=1245177 i#118927 - Undo/Redo "Update Link" does not reset sheet tab color http://svn.apache.org/viewvc?view=revision&revision=1245241 i#118747 - Copy tab color when transferring sheets across documents http://svn.apache.org/viewvc?view=revision&revision=1230355 Patch contributed by Oliver Rainer-Wittman i#118012 - methods <ScBroadcastAreaSlot::AreaBroadcast(..)> and <ScBroadcastAreaSlot::AreaBroadcastInRange(..)> adapt stl-container iteration in order to avoid destroyed iterators during iteration. http://svn.apache.org/viewvc?view=revision&revision=1297916 Patches contributed by Mathias Bauer gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 Patch contributed by Daniel Rentz calc69: #i116936# fix VBA symbol Cells http://svn.apache.org/viewvc?view=revision&revision=1172135 Patches contributed by leiw: i#118546 CPU 100% on switched off AutoCalculate with Conditional Formatting on date values http://svn.apache.org/viewvc?view=revision&revision=1301380 Re-add new function documentation. Many various cleanups. Add missing calc66: #o11817313# also look at formula result number format, remove redundant binaries.
2012-09-12targetted VBA re-work.Noel Power
2012-07-30remove unnecessary includes of svl/svarray.hxxCaolán McNamara
Change-Id: Ifec201efc4e97baf2d36d66c4ae6967eadd6134c
2012-03-04Convert usages of SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin
* Make typedefs private to class ScTabViewObj * rename field aSelectionListeners to aSelectionChgListeners
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.