summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/tools/PropertySet.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:20:00 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:09 +0200
commited6b8a100c1aabb342573f252509573bbe124d29 (patch)
tree35874493d9470202b3221aa2a1666b6647494242 /sd/source/ui/tools/PropertySet.cxx
parentfix build after rebase (diff)
downloadcore-ed6b8a100c1aabb342573f252509573bbe124d29.tar.gz
core-ed6b8a100c1aabb342573f252509573bbe124d29.zip
remove whitespaces
Change-Id: I9daea42a433b5032931a722878874917cf37f4d1
Diffstat (limited to 'sd/source/ui/tools/PropertySet.cxx')
-rw-r--r--sd/source/ui/tools/PropertySet.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/sd/source/ui/tools/PropertySet.cxx b/sd/source/ui/tools/PropertySet.cxx
index 6632a4be8e4d..66fecd19a58f 100644
--- a/sd/source/ui/tools/PropertySet.cxx
+++ b/sd/source/ui/tools/PropertySet.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "tools/PropertySet.hxx"
#include <algorithm>
#include <o3tl/compat_functional.hxx>
@@ -33,16 +32,10 @@ PropertySet::PropertySet (void)
{
}
-
-
-
PropertySet::~PropertySet (void)
{
}
-
-
-
void SAL_CALL PropertySet::disposing (void)
{
}
@@ -55,9 +48,6 @@ Reference<beans::XPropertySetInfo> SAL_CALL PropertySet::getPropertySetInfo (voi
return NULL;
}
-
-
-
void SAL_CALL PropertySet::setPropertyValue (
const OUString& rsPropertyName,
const css::uno::Any& rsPropertyValue)
@@ -86,9 +76,6 @@ void SAL_CALL PropertySet::setPropertyValue (
}
}
-
-
-
Any SAL_CALL PropertySet::getPropertyValue (const OUString& rsPropertyName)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
@@ -99,9 +86,6 @@ Any SAL_CALL PropertySet::getPropertyValue (const OUString& rsPropertyName)
return GetPropertyValue(rsPropertyName);
}
-
-
-
void SAL_CALL PropertySet::addPropertyChangeListener (
const OUString& rsPropertyName,
const css::uno::Reference<css::beans::XPropertyChangeListener>& rxListener)
@@ -121,9 +105,6 @@ void SAL_CALL PropertySet::addPropertyChangeListener (
rxListener));
}
-
-
-
void SAL_CALL PropertySet::removePropertyChangeListener (
const OUString& rsPropertyName,
const css::uno::Reference<css::beans::XPropertyChangeListener>& rxListener)
@@ -152,9 +133,6 @@ void SAL_CALL PropertySet::removePropertyChangeListener (
}
}
-
-
-
void SAL_CALL PropertySet::addVetoableChangeListener (
const OUString& rsPropertyName,
const css::uno::Reference<css::beans::XVetoableChangeListener>& rxListener)
@@ -168,9 +146,6 @@ void SAL_CALL PropertySet::addVetoableChangeListener (
(void)rxListener;
}
-
-
-
void SAL_CALL PropertySet::removeVetoableChangeListener (
const OUString& rsPropertyName,
const css::uno::Reference<css::beans::XVetoableChangeListener>& rxListener)
@@ -184,11 +159,6 @@ void SAL_CALL PropertySet::removeVetoableChangeListener (
(void)rxListener;
}
-
-
-
-
-
void PropertySet::CallListeners (
const OUString& rsPropertyName,
const beans::PropertyChangeEvent& rEvent)
@@ -203,9 +173,6 @@ void PropertySet::CallListeners (
}
}
-
-
-
void PropertySet::ThrowIfDisposed (void)
throw (::com::sun::star::lang::DisposedException)
{