summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-21 09:05:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-21 09:05:41 +0000
commit3d2f43438d4fe6947965a98262b0db42c8d5e680 (patch)
treee245fa05276d3b30b9537924cb06f7ebe266ac3b /sd/source/ui/framework
parent190f91c71905ca18d6174393ad1b54be74259754 (diff)
loplugin:unusedmethods sd
Change-Id: I9b5399ace50db3259df2e619f28ae547a38e6c6d Reviewed-on: https://gerrit.libreoffice.org/17254 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/source/ui/framework')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationClassifier.cxx13
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationClassifier.hxx13
2 files changed, 0 insertions, 26 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx
index 05d1c9589e85..6989223cd136 100644
--- a/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx
@@ -162,20 +162,7 @@ void ConfigurationClassifier::CopyResources (
}
}
-void ConfigurationClassifier::TraceResourceIdVector (
- const sal_Char* pMessage,
- const ResourceIdVector& rResources)
-{
- SAL_INFO("sd.fwk", OSL_THIS_FUNC << ": " << pMessage);
- ResourceIdVector::const_iterator iResource;
- for (iResource=rResources.begin(); iResource!=rResources.end(); ++iResource)
- {
- OUString sResource (FrameworkHelper::ResourceIdToString(*iResource));
- SAL_INFO("sd.fwk", OSL_THIS_FUNC << ": " <<
- OUStringToOString(sResource, RTL_TEXTENCODING_UTF8).getStr());
- }
-}
} } // end of namespace sd::framework
diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx
index 27dde875fa56..2470f01ffc04 100644
--- a/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx
+++ b/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx
@@ -76,19 +76,6 @@ public:
*/
const ResourceIdVector& GetC2minusC1() const { return maC2minusC1;}
- /** Return the resources that belong to both the configurations that
- where given to the constructor.
- @return
- A reference to the, possibly empty, list of resources is
- returned. This reference remains valid as long as the called
- ConfigurationClassifier object stays alive.
- */
- const ResourceIdVector& GetC1andC2() const { return maC1andC2;}
-
- static void TraceResourceIdVector (
- const sal_Char* pMessage,
- const ResourceIdVector& rResources);
-
private:
::com::sun::star::uno::Reference<
::com::sun::star::drawing::framework::XConfiguration> mxConfiguration1;