summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:18:10 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:18:10 +0000
commit691b78837f41dc5858aa4ddcc14022170bd1260d (patch)
treecaa51ea506bad488a4026cb6c1128ac0f844f807 /configmgr
parent2748f86d1557f89a24f0cc95a8ea8e32257a8f8e (diff)
INTEGRATION: CWS warnings01 (1.3.78); FILE MERGED
2005/09/22 16:29:23 sb 1.3.78.2: RESYNC: (1.3-1.4); FILE MERGED 2005/09/06 12:27:37 cd 1.3.78.1: #i53898# Make code warning free
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/backend/basicimporthandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/backend/basicimporthandler.cxx b/configmgr/source/backend/basicimporthandler.cxx
index e4eb4d13a9..16e9357bcf 100644
--- a/configmgr/source/backend/basicimporthandler.cxx
+++ b/configmgr/source/backend/basicimporthandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: basicimporthandler.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 03:24:41 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:18:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -51,10 +51,10 @@ namespace configmgr
BasicImportHandler::BasicImportHandler(
Backend const & xBackend,OUString const & aEntity, const sal_Bool& bNotify)
-: m_xBackend(xBackend)
+: m_bSendNotification(bNotify)
+, m_xBackend(xBackend)
, m_aComponentName()
, m_aEntity(aEntity)
-, m_bSendNotification(bNotify)
{
OSL_ENSURE( m_xBackend.is(), "Creating an import handler without a target backend" );
}