summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-05-10 21:37:43 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-05-12 03:28:31 +0200
commit86dcfe908ff8f25d57b5298dca896e49416af127 (patch)
tree1db7baf947c4d5db07a63884e5cf3974be9208fd /svtools
parent46351c13e9057bbb27bb490f166d8002f86a6025 (diff)
whitespace cleanup
Change-Id: I511412f8b6d8ac2fcbac738d1ef5e6d5cd9928bb
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/itemdel.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/svtools/source/misc/itemdel.cxx b/svtools/source/misc/itemdel.cxx
index abba40eaaf0c..b6c9f6907a8d 100644
--- a/svtools/source/misc/itemdel.cxx
+++ b/svtools/source/misc/itemdel.cxx
@@ -28,11 +28,6 @@
#include <svl/itempool.hxx>
-// STATIC DATA -----------------------------------------------------------
-
-
-
-
class SfxItemDesruptor_Impl: private boost::noncopyable
{
SfxPoolItem *pItem;
@@ -47,7 +42,6 @@ public:
~SfxItemDesruptor_Impl();
};
-
SfxItemDesruptor_Impl::SfxItemDesruptor_Impl( SfxPoolItem *pItemToDesrupt ):
pItem(pItemToDesrupt),
aLink( LINK(this, SfxItemDesruptor_Impl, Delete) )
@@ -63,7 +57,6 @@ void SfxItemDesruptor_Impl::LaunchDeleteOnIdle()
GetpApp()->InsertIdleHdl( aLink, 1 );
}
-
SfxItemDesruptor_Impl::~SfxItemDesruptor_Impl()
{
@@ -76,7 +69,6 @@ SfxItemDesruptor_Impl::~SfxItemDesruptor_Impl()
delete pItem;
}
-
IMPL_LINK_NOARG(SfxItemDesruptor_Impl, Delete)
{
delete this;
ch since global.hxx contains so much more, it's omitted from this round. This also gives some false positives used in ErrorMessage() calls or just untranslated strings. Also translate some stray German comments Change-Id: Icfea2b2942d12c3c134d419cb7c9a84534c04a86 Reviewed-on: https://gerrit.libreoffice.org/52932 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> 2018-01-15More loplugin:cstylecast: scStephan Bergmann Change-Id: Iaaa5b99cdff49bc1e88443ee23d98c005ff84911 2017-10-23loplugin:includeform: scStephan Bergmann Change-Id: I2ed763e0584a188032c80fde60890de3c6985cbd 2017-09-21Rename GetSelectEntryPos -> GetSelectedEntryPosSamuel Mehrbrodt Change-Id: I0bd4cb463575af843c72d9c8aaf91742203532a4 Reviewed-on: https://gerrit.libreoffice.org/42283 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> 2017-06-12cleanup unused css/frame/* includesJochen Nitschke Change-Id: I173a29fd1ee889127369d2bc2fce8e010b89ca65 Reviewed-on: https://gerrit.libreoffice.org/38633 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> 2016-10-05Remove _TYPED suffix from tools/link.hxx macrosStephan Bergmann ...which was introduced with 3ead3ad52f9bb2f9d1d6cf8dfc73a0a25e6778ed "Gradually typed Link" to distinguish the new, typed versions from the old, untyped ones, but is no longer necessary since 382eb1a23c390154619c385414bdbe6f6e461173 "remove untyped Link<>" removed the old versions. Change-Id: I494025df486a16a45861fcd8192dfe0275b1103c 2016-07-27Drop OpenCL details from the 'Detailed Calculation Settings' dialogTor Lillqvist There is really no need for end-users to have access to these settings. We don't want end-users to shoot themselves in the foot. If power users really think they need to modify these settings, they can poke the LibreOffice registry. Change-Id: I567506f2d2adf3c3b1817ca82be808af4e9698f7 2016-07-27tdf#101063: Get rid of the whole "Test OpenCL" functionality while at itTor Lillqvist Its intended use case has never been particularly clear. (I wrote it, so I know.) We now test OpenCL usability silently at each from-scratch start. Change-Id: I4e04ae5876153f61089ece6a75ebfdecf4cfcc09 2016-07-27Remove effectively dead codeTor Lillqvist We haven't displayed any list of OpenCL devices to select from in this dialog for a long time, so remove the associated code. Change-Id: Ife0c624a8bfb829bd1e62e0a000c7681d696f40b 2016-07-06restore loplugin:vclwidget checking for calling clear() on VclPtr fieldsNoel Grandin Change-Id: I85eda1c33016c1461d897fc0a3b70457209a7405 Reviewed-on: https://gerrit.libreoffice.org/26806 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> 2016-04-26update loplugin stylepolice to check local pointers varsNoel Grandin are actually pointer vars. Also convert from regex to normal code, so we can enable this plugin all the time. Change-Id: Ie36a25ecba61c18f99c77c77646d6459a443cbd1 Reviewed-on: https://gerrit.libreoffice.org/24391 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> 2016-03-12tdf#84938 Change defines to typed_flagsJochen Nitschke Put defines into an enum class and use typed_flags template from o3tl to give them flag operators. There were some shift operations to apply flags from start references to end references, these went into a helper in address.hxx to hide them. A marco with shift operations in address.cxx was rewritten in two helpers without shifts. One shift remained in ScRange::Format with a comment. The other flag untypical operator was a minus 1 in a helper for ScRefFinder::ToggleRel, which iteratates through all possible combinations for absolute references. This is used to make referecnces absolute via SHIFT+F4. A replacement would be too complex. Change-Id: I4850f1623e01e56c60ac2260b95fc5cad8b6fd71 Signed-off-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Reviewed-on: https://gerrit.libreoffice.org/22840 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>