summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 14:53:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:09 +0100
commit304e9c4c3734d7f0f4b62d221a9c70908b6d746d (patch)
treef05e8a492904397ccacb041fcd13581e50c06126 /sd
parent8edf036c33c2eccddefded42ad1e64fae96c7539 (diff)
-Werror,-Wunused-member-function
Change-Id: I7db34329a93c33c425f1e63fa842b218e4c9517c
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/DocumentRenderer.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx
index ceac0ac6e21f..4136e89d8762 100644
--- a/sd/source/ui/view/DocumentRenderer.cxx
+++ b/sd/source/ui/view/DocumentRenderer.cxx
@@ -233,23 +233,6 @@ namespace {
}
/** Return <TRUE/> when the value of the property with name pName is
- a string and its value equals pValue. When the property is
- unknown then bDefaultValue is returned. Otherwise <FALSE/> is
- returned.
- */
- bool GetBoolValue (
- const sal_Char* pName,
- const sal_Char* pValue,
- const bool bDefaultValue = false) const
- {
- OUString sValue( mrProperties.getStringValue( pName ) );
- if (!sValue.isEmpty())
- return sValue.equalsAscii(pValue);
- else
- return bDefaultValue;
- }
-
- /** Return <TRUE/> when the value of the property with name pName is
an integer and its value is nTriggerValue. Otherwise <FALSE/> is
returned.
*/