summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/formbrowsertools.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 18:36:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-27 07:34:29 -0600
commit15246c959ae5ab4e124859a4d8981676f9eb657f (patch)
tree87813888699be2b850201725c45564c8c6423262 /extensions/source/propctrlr/formbrowsertools.hxx
parent710178094dfb21b0864335b1fa1a3401e4d82959 (diff)
Remove visual noise from extensions
Change-Id: I0397d0d0e5343b7ed192a790664b068ac6955bd3 Reviewed-on: https://gerrit.libreoffice.org/8259 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/propctrlr/formbrowsertools.hxx')
-rw-r--r--extensions/source/propctrlr/formbrowsertools.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/extensions/source/propctrlr/formbrowsertools.hxx b/extensions/source/propctrlr/formbrowsertools.hxx
index 2df90d5ab6bd..7378c4273c09 100644
--- a/extensions/source/propctrlr/formbrowsertools.hxx
+++ b/extensions/source/propctrlr/formbrowsertools.hxx
@@ -27,15 +27,15 @@
#include <functional>
#include <set>
-//............................................................................
+
namespace pcr
{
-//............................................................................
+
OUString GetUIHeadlineName(sal_Int16 _nClassId, const ::com::sun::star::uno::Any& _rUnoObject);
sal_Int16 classifyComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxComponent );
- //========================================================================
+
struct FindPropertyByHandle : public ::std::unary_function< ::com::sun::star::beans::Property, bool >
{
private:
@@ -49,7 +49,7 @@ namespace pcr
}
};
- //========================================================================
+
struct FindPropertyByName : public ::std::unary_function< ::com::sun::star::beans::Property, bool >
{
private:
@@ -63,7 +63,7 @@ namespace pcr
}
};
- //========================================================================
+
struct PropertyLessByName
:public ::std::binary_function < ::com::sun::star::beans::Property,
::com::sun::star::beans::Property,
@@ -76,7 +76,7 @@ namespace pcr
}
};
- //========================================================================
+
struct TypeLessByName
:public ::std::binary_function < ::com::sun::star::uno::Type,
::com::sun::star::uno::Type,
@@ -89,12 +89,12 @@ namespace pcr
}
};
- //========================================================================
+
typedef ::std::set< ::com::sun::star::beans::Property, PropertyLessByName > PropertyBag;
-//............................................................................
+
} // namespace pcr
-//............................................................................
+
#endif // _EXTENSIONS_FORMSCTRLR_FORMBROWSERTOOLS_HXX_