summaryrefslogtreecommitdiff
path: root/cppuhelper/source/propshlp.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 18:02:27 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-27 06:43:02 -0600
commit518b75326a83166a24b9d3c1b31ce63189f60c7f (patch)
treeb0ed7c7334bf0e6bea057b4b77007c87d9754c4a /cppuhelper/source/propshlp.cxx
parenta67c2a12bccef06f1fb17d8fbae08e44f44c4392 (diff)
Remove visual noise from cppuhelper
Change-Id: If23a1aa19949f91f900d55ff9e1d5039378d7277 Reviewed-on: https://gerrit.libreoffice.org/8248 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cppuhelper/source/propshlp.cxx')
-rw-r--r--cppuhelper/source/propshlp.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 49a98ffe2c52..4340708edd1e 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -130,9 +130,9 @@ sal_Bool OPropertySetHelperInfo_Impl::hasPropertyByName( const OUString & Proper
return pR != NULL;
}
-// ----------------------------------------------------
+
// class PropertySetHelper_Impl
-// ----------------------------------------------------
+
class OPropertySetHelper::Impl {
public:
@@ -155,9 +155,9 @@ public:
};
-// ----------------------------------------------------
+
// class PropertySetHelper
-// ----------------------------------------------------
+
OPropertySetHelper::OPropertySetHelper(
OBroadcastHelper & rBHelper_ ) SAL_THROW(())
: rBHelper( rBHelper_ ),
@@ -1032,9 +1032,9 @@ void OPropertySetHelper2::enableChangeListenerNotification( sal_Bool bEnable )
m_pReserved->m_bFireEvents = bEnable;
}
-//========================================================================
+
//== OPropertyArrayHelper ================================================
-//========================================================================
+
extern "C" {
@@ -1096,13 +1096,13 @@ OPropertyArrayHelper::OPropertyArrayHelper(
init( bSorted );
}
-//========================================================================
+
sal_Int32 OPropertyArrayHelper::getCount() const
{
return aInfos.getLength();
}
-//========================================================================
+
sal_Bool OPropertyArrayHelper::fillPropertyMembersByHandle
(
OUString * pPropName,
@@ -1141,13 +1141,13 @@ sal_Bool OPropertyArrayHelper::fillPropertyMembersByHandle
return sal_False;
}
-//========================================================================
+
Sequence< Property > OPropertyArrayHelper::getProperties(void)
{
return aInfos;
}
-//========================================================================
+
Property OPropertyArrayHelper::getPropertyByName(const OUString& aPropertyName)
throw (UnknownPropertyException)
{
@@ -1161,7 +1161,7 @@ Property OPropertyArrayHelper::getPropertyByName(const OUString& aPropertyName)
return *pR;
}
-//========================================================================
+
sal_Bool OPropertyArrayHelper::hasPropertyByName(const OUString& aPropertyName)
{
Property * pR;
@@ -1171,7 +1171,7 @@ sal_Bool OPropertyArrayHelper::hasPropertyByName(const OUString& aPropertyName)
return pR != NULL;
}
-//========================================================================
+
sal_Int32 OPropertyArrayHelper::getHandleByName( const OUString & rPropName )
{
Property * pR;
@@ -1181,7 +1181,7 @@ sal_Int32 OPropertyArrayHelper::getHandleByName( const OUString & rPropName )
return pR ? pR->Handle : -1;
}
-//========================================================================
+
sal_Int32 OPropertyArrayHelper::fillHandles( sal_Int32 * pHandles, const Sequence< OUString > & rPropNames )
{
sal_Int32 nHitCount = 0;