From e0b7ec28f78c0c951e587d302ee88ae407cb1ba1 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Tue, 20 Jun 2006 02:02:51 +0000
Subject: INTEGRATION: CWS warnings01 (1.5.50); FILE MERGED 2006/03/24 15:36:08
fs 1.5.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
---
dbaccess/source/ui/dlg/ConnectionPageSetup.cxx | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
(limited to 'dbaccess/source/ui/dlg/ConnectionPageSetup.cxx')
diff --git a/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx b/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
index 9f6379bfd48a..4bc8fe1fea06 100644
--- a/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
+++ b/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ConnectionPageSetup.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 14:45:42 $
+ * last change: $Author: hr $ $Date: 2006-06-20 03:02:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -219,10 +219,10 @@ namespace dbaui
//= OConnectionTabPageSetup
//========================================================================
DBG_NAME(OConnectionTabPageSetup)
- OConnectionTabPageSetup::OConnectionTabPageSetup(Window* pParent, USHORT _rId, const SfxItemSet& _rCoreAttrs, USHORT _nHelpTextResId, USHORT _nHeaderResId, USHORT _nUrlResId, sal_Bool _bgetConnection)
+ OConnectionTabPageSetup::OConnectionTabPageSetup(Window* pParent, USHORT _rId, const SfxItemSet& _rCoreAttrs, USHORT _nHelpTextResId, USHORT _nHeaderResId, USHORT _nUrlResId)
:OConnectionHelper(pParent, ModuleRes(_rId), _rCoreAttrs)
- , m_aFT_HelpText(this, ResId(FT_AUTOWIZARDHELPTEXT))
,m_bUserGrabFocus(sal_True)
+ ,m_aFT_HelpText(this, ResId(FT_AUTOWIZARDHELPTEXT))
{
DBG_CTOR(OConnectionTabPageSetup, NULL);
@@ -286,7 +286,7 @@ namespace dbaui
{
String sDisplayName = m_pCollection->getTypeDisplayName(m_eType);
FixedText* ppTextControls[] ={&m_aFT_Connection};
- for (int i = 0; i < sizeof(ppTextControls)/sizeof(ppTextControls[0]); ++i)
+ for (size_t i = 0; i < sizeof(ppTextControls)/sizeof(ppTextControls[0]); ++i)
{
ppTextControls[i]->SetText(sDisplayName);
}
@@ -295,7 +295,7 @@ namespace dbaui
callModifiedHdl();
}
// -----------------------------------------------------------------------
- sal_Bool OConnectionTabPageSetup::commitPage(COMMIT_REASON _eReason)
+ sal_Bool OConnectionTabPageSetup::commitPage(COMMIT_REASON /*_eReason*/)
{
return commitURL();
}
@@ -314,7 +314,7 @@ namespace dbaui
}
// -----------------------------------------------------------------------
- IMPL_LINK(OConnectionTabPageSetup, OnEditModified, Edit*, _pEdit)
+ IMPL_LINK(OConnectionTabPageSetup, OnEditModified, Edit*, /*_pEdit*/)
{
SetRoadmapStateValue(checkTestConnection());
callModifiedHdl();
--
cgit