User: hr      
Date: 06/06/19 18:41:04

Modified:
 /dba/connectivity/source/drivers/kab/
  kcondition.cxx

Log:
 INTEGRATION: CWS warnings01 (1.2.28); FILE MERGED
 2006/01/30 14:18:54 sb 1.2.28.1: #i53898# Made code warning-free.

File Changes:

Directory: /dba/connectivity/source/drivers/kab/
================================================

File [changed]: kcondition.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/kab/kcondition.cxx?r1=1.2&r2=1.3
Delta lines:  +11 -11
---------------------
--- kcondition.cxx      19 Dec 2005 16:53:00 -0000      1.2
+++ kcondition.cxx      20 Jun 2006 01:41:01 -0000      1.3
@@ -51,8 +51,8 @@
 }
 // 
-----------------------------------------------------------------------------
 KabConditionConstant::KabConditionConstant(const sal_Bool bValue)
-       : m_bValue(bValue),
-          KabCondition()
+    : KabCondition(),
+      m_bValue(bValue)
 {
 }
 // 
-----------------------------------------------------------------------------
@@ -66,7 +66,7 @@
        return !m_bValue;
 }
 // 
-----------------------------------------------------------------------------
-sal_Bool KabConditionConstant::eval(const ::KABC::Addressee &aAddressee) const
+sal_Bool KabConditionConstant::eval(const ::KABC::Addressee &) const
 {
        return m_bValue;
 }
@@ -118,8 +118,8 @@
 }
 // 
-----------------------------------------------------------------------------
 KabConditionCompare::KabConditionCompare(const ::rtl::OUString &sColumnName, 
const ::rtl::OUString &sMatchString) throw(SQLException)
-       : m_sMatchString(sMatchString),
-         KabConditionColumn(sColumnName)
+    : KabConditionColumn(sColumnName),
+      m_sMatchString(sMatchString)
 {
 }
 // 
-----------------------------------------------------------------------------
@@ -173,9 +173,9 @@
 }
 // 
-----------------------------------------------------------------------------
 KabConditionBoolean::KabConditionBoolean(KabCondition *pLeft, KabCondition 
*pRight)
-       : m_pLeft(pLeft),
-          m_pRight(pRight),
-          KabCondition()
+    : KabCondition(),
+      m_pLeft(pLeft),
+      m_pRight(pRight)
 {
 }
 // 
-----------------------------------------------------------------------------




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to