summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/sqlmessage.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:10:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:10:03 +0000
commit9f4c25310c72af490f335c0a315ec03bb29a893a (patch)
treeb0c0e0f0be31c1683d496b95e0ee6541d0a8ae91 /dbaccess/source/ui/dlg/sqlmessage.cxx
parent0d375096744d6fc0fce58ea591e7dd019c428a89 (diff)
INTEGRATION: CWS warnings01 (1.20.74); FILE MERGED
2006/06/01 07:50:29 fs 1.20.74.2: #i57457# warning-free code 2006/03/24 15:36:13 fs 1.20.74.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess/source/ui/dlg/sqlmessage.cxx')
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.cxx19
1 files changed, 7 insertions, 12 deletions
diff --git a/dbaccess/source/ui/dlg/sqlmessage.cxx b/dbaccess/source/ui/dlg/sqlmessage.cxx
index 068fe150367a..ab14a6888e2f 100644
--- a/dbaccess/source/ui/dlg/sqlmessage.cxx
+++ b/dbaccess/source/ui/dlg/sqlmessage.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sqlmessage.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: hr $ $Date: 2005-09-23 12:32:10 $
+ * last change: $Author: hr $ $Date: 2006-06-20 03:10:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -179,7 +179,6 @@ OExceptionChainDialog::OExceptionChainDialog(Window* pParent, const Any& _rStart
case SQLExceptionInfo::SQL_EXCEPTION:
{
pListEntry = m_aExceptionList.InsertEntry(sErrorLabel, aErrorImage, aErrorImage);
- const SQLException* pException = (const SQLException*)aCurrent;
}
break;
@@ -292,8 +291,7 @@ void OSQLMessageBox::Construct(const UniString& rTitle,
MessageType eImage)
{
// Changed as per BugID 79541 Branding/Configuration
- ::utl::ConfigManager* pMgr = ::utl::ConfigManager::GetConfigManager();
- Any aProductName = pMgr->GetDirectConfigProperty(::utl::ConfigManager::PRODUCTNAME);
+ Any aProductName = ::utl::ConfigManager::GetConfigManager()->GetDirectConfigProperty( ::utl::ConfigManager::PRODUCTNAME );
::rtl::OUString sProductName;
aProductName >>= sProductName;
@@ -360,9 +358,6 @@ void OSQLMessageBox::Construct(const UniString& rTitle,
m_aMessage.SetText(rMessage);
// Buttons anlegen
- long nBtnCount = 0;
- sal_Bool bHelp = sal_False; //aHelpBtn.IsVisible();
-
sal_uInt16 nDefId = 0;
if (nStyle & WB_DEF_YES)
@@ -514,8 +509,8 @@ OSQLMessageBox::OSQLMessageBox(Window* _pParent, const UniString& _rTitle, const
,m_aInfoImage(this)
,m_aTitle(this,WB_WORDBREAK | WB_LEFT)
,m_aMessage(this,WB_WORDBREAK | WB_LEFT)
- ,m_pInfoButton(NULL)
,m_aNextChainElement(SQLExceptionInfo(_rError).get())
+ ,m_pInfoButton(NULL)
{
DBG_CTOR(OSQLMessageBox,NULL);
@@ -528,8 +523,8 @@ OSQLMessageBox::OSQLMessageBox(Window* _pParent, const SQLException& _rError, Wi
,m_aInfoImage(this)
,m_aTitle(this,WB_WORDBREAK | WB_LEFT)
,m_aMessage(this,WB_WORDBREAK | WB_LEFT)
- ,m_pInfoButton(NULL)
,m_aNextChainElement(SQLExceptionInfo(_rError).get())
+ ,m_pInfoButton(NULL)
{
DBG_CTOR(OSQLMessageBox,NULL);
@@ -542,8 +537,8 @@ OSQLMessageBox::OSQLMessageBox(Window* _pParent, const SQLExceptionInfo& _rExcep
,m_aInfoImage(this)
,m_aTitle(this,WB_WORDBREAK | WB_LEFT)
,m_aMessage(this,WB_WORDBREAK | WB_LEFT)
- ,m_pInfoButton(NULL)
,m_aNextChainElement(_rException.get())
+ ,m_pInfoButton(NULL)
{
DBG_CTOR(OSQLMessageBox,NULL);
@@ -572,7 +567,7 @@ OSQLMessageBox::~OSQLMessageBox()
}
//--------------------------------------------------------------------------
-IMPL_LINK( OSQLMessageBox, ButtonClickHdl, Button *, pButton )
+IMPL_LINK( OSQLMessageBox, ButtonClickHdl, Button *, /*pButton*/ )
{
OExceptionChainDialog aDlg( this, m_aNextChainElement );
aDlg.Execute();