summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:02:51 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:02:51 +0000
commite0b7ec28f78c0c951e587d302ee88ae407cb1ba1 (patch)
treee0b8a6d0e2404f6f44f322143ebc2a86e8229b08 /dbaccess/source/ui
parent1f89d63c70cb964337d3300794de1f7ad858967f (diff)
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)
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPageSetup.cxx14
1 files changed, 7 insertions, 7 deletions
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();