summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/property.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/inc/comphelper/property.hxx')
-rw-r--r--comphelper/inc/comphelper/property.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/comphelper/inc/comphelper/property.hxx b/comphelper/inc/comphelper/property.hxx
index 662fa84903b8..a294b3363b5d 100644
--- a/comphelper/inc/comphelper/property.hxx
+++ b/comphelper/inc/comphelper/property.hxx
@@ -51,19 +51,6 @@ namespace comphelper
/** compare two properties by name
*/
- struct PropertyStringLessFunctor : ::std::binary_function< ::com::sun::star::beans::Property, ::rtl::OUString, bool >
- {
- // ................................................................
- inline bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs ) const
- {
- return lhs.Name.compareTo(rhs) < 0;
- }
- // ................................................................
- inline bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs ) const
- {
- return lhs.compareTo(rhs.Name) < 0;
- }
- };
//--------------------------------------------------------------------------
// comparing two property instances
struct PropertyCompareByName : public ::std::binary_function< ::com::sun::star::beans::Property, ::com::sun::star::beans::Property, bool >