summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterTheme.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-27 13:48:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-06-27 13:48:33 +0200
commit2c355e3a76b7a167a61200ab749b2d88d5fbe3a7 (patch)
tree2bdd085679303247fcf4707bd3a0bb6d0700353b /sdext/source/presenter/PresenterTheme.cxx
parenta679ae4c8782720379f70e9beed8f8d7eaebe58f (diff)
Remove unused ItemProcessor argument
Change-Id: Ie650f8c046f60a749999e1819edb5abad79e5362
Diffstat (limited to 'sdext/source/presenter/PresenterTheme.cxx')
-rw-r--r--sdext/source/presenter/PresenterTheme.cxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/sdext/source/presenter/PresenterTheme.cxx b/sdext/source/presenter/PresenterTheme.cxx
index 10c7cf023482..f5cc34a28937 100644
--- a/sdext/source/presenter/PresenterTheme.cxx
+++ b/sdext/source/presenter/PresenterTheme.cxx
@@ -155,7 +155,6 @@ public:
private:
void ProcessPaneStyle (
ReadContext& rReadContext,
- const OUString& rsKey,
const ::std::vector<css::uno::Any>& rValues);
};
@@ -217,7 +216,6 @@ private:
void ProcessStyleAssociation(
ReadContext& rReadContext,
- const OUString& rsKey,
const ::std::vector<css::uno::Any>& rValues);
};
@@ -847,20 +845,17 @@ void PaneStyleContainer::Read (
PresenterConfigurationAccess::ForAll(
xPaneStyleList,
aProperties,
- [this, &rReadContext] (OUString const& rKey, std::vector<uno::Any> const& rValues)
+ [this, &rReadContext] (std::vector<uno::Any> const& rValues)
{
- return this->ProcessPaneStyle(rReadContext, rKey, rValues);
+ return this->ProcessPaneStyle(rReadContext, rValues);
});
}
}
void PaneStyleContainer::ProcessPaneStyle(
ReadContext& rReadContext,
- const OUString& rsKey,
const ::std::vector<Any>& rValues)
{
- (void)rsKey;
-
if (rValues.size() != 6)
return;
@@ -1086,9 +1081,9 @@ void StyleAssociationContainer::Read (
PresenterConfigurationAccess::ForAll(
xStyleAssociationList,
aProperties,
- [this, &rReadContext] (OUString const& rKey, std::vector<uno::Any> const& rValues)
+ [this, &rReadContext] (std::vector<uno::Any> const& rValues)
{
- return this->ProcessStyleAssociation(rReadContext, rKey, rValues);
+ return this->ProcessStyleAssociation(rReadContext, rValues);
});
}
}
@@ -1104,11 +1099,9 @@ OUString StyleAssociationContainer::GetStyleName (const OUString& rsResourceName
void StyleAssociationContainer::ProcessStyleAssociation(
ReadContext& rReadContext,
- const OUString& rsKey,
const ::std::vector<Any>& rValues)
{
(void)rReadContext;
- (void)rsKey;
if (rValues.size() != 2)
return;