From 9b5a2b203959e26c338f6e29959d13f09a1169db Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 26 Sep 2007 13:49:51 +0000
Subject: INTEGRATION: CWS dba24a (1.5.298); FILE MERGED 2007/09/25 11:24:07 oj
1.5.298.1: #i81922# new method to compare relation data
---
dbaccess/source/ui/inc/ConnectionLineData.hxx | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
(limited to 'dbaccess/source/ui/inc/ConnectionLineData.hxx')
diff --git a/dbaccess/source/ui/inc/ConnectionLineData.hxx b/dbaccess/source/ui/inc/ConnectionLineData.hxx
index c7960d884c73..08c6787fc861 100644
--- a/dbaccess/source/ui/inc/ConnectionLineData.hxx
+++ b/dbaccess/source/ui/inc/ConnectionLineData.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ConnectionLineData.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 15:16:14 $
+ * last change: $Author: hr $ $Date: 2007-09-26 14:49:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -75,6 +75,8 @@ namespace dbaui
::rtl::OUString m_aSourceFieldName;
::rtl::OUString m_aDestFieldName;
+ friend bool operator==(const OConnectionLineData& lhs, const OConnectionLineData& rhs);
+ friend bool operator!=(const OConnectionLineData& lhs, const OConnectionLineData& rhs) { return !(lhs == rhs); }
protected:
virtual ~OConnectionLineData();
public:
@@ -109,6 +111,7 @@ namespace dbaui
OConnectionLineData& operator=( const OConnectionLineData& rConnLineData );
};
+ //-------------------------------------------------------------------------
//------------------------------------------------------------------
typedef ::vos::ORef< OConnectionLineData > OConnectionLineDataRef;
typedef ::std::vector< OConnectionLineDataRef > OConnectionLineDataVec;
--
cgit