User: hr Date: 05/09/23 05:32:14 Modified: /dba/dbaccess/source/ui/dlg/ sqlmessage.cxx
Log: INTEGRATION: CWS dba201b (1.18.58); FILE MERGED 2005/09/21 08:48:12 oj 1.18.58.2: RESYNC: (1.18-1.19); FILE MERGED 2005/07/11 13:37:21 fs 1.18.58.1: merging CWS dba201 into CWS dba201b File Changes: Directory: /dba/dbaccess/source/ui/dlg/ ======================================= File [changed]: sqlmessage.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/dlg/sqlmessage.cxx?r1=1.19&r2=1.20 Delta lines: +16 -0 -------------------- --- sqlmessage.cxx 8 Sep 2005 15:10:52 -0000 1.19 +++ sqlmessage.cxx 23 Sep 2005 12:32:10 -0000 1.20 @@ -118,6 +118,7 @@ DECL_LINK(OnExceptionSelected, void*); }; +DBG_NAME(OExceptionChainDialog) //------------------------------------------------------------------------------ OExceptionChainDialog::OExceptionChainDialog(Window* pParent, const Any& _rStart) :ModalDialog(pParent, ModuleRes(DLG_SQLEXCEPTIONCHAIN)) @@ -128,6 +129,8 @@ ,m_aExceptionText (this, ResId(ME_DESCRIPTION)) ,m_aOK (this, ResId(PB_OK)) { + DBG_CTOR(OExceptionChainDialog,NULL); + String sErrorLabel(ResId(STR_EXCEPTION_ERROR)); String sWarningLabel(ResId(STR_EXCEPTION_WARNING)); String sInfoLabel(ResId(STR_EXCEPTION_INFO)); @@ -232,6 +235,8 @@ delete static_cast<SQLExceptionInfo*>(pLoop->GetUserData()); pLoop = m_aExceptionList.Next(pLoop); } + + DBG_DTOR(OExceptionChainDialog,NULL); } //------------------------------------------------------------------------------ @@ -501,6 +506,7 @@ Construct(sTitle, sMessage, _nStyle, _eImage); } +DBG_NAME(OSQLMessageBox) //------------------------------------------------------------------------------ OSQLMessageBox::OSQLMessageBox(Window* _pParent, const UniString& _rTitle, const SQLException& _rError, WinBits _nStyle, MessageType _eImage) @@ -511,6 +517,8 @@ ,m_pInfoButton(NULL) ,m_aNextChainElement(SQLExceptionInfo(_rError).get()) { + DBG_CTOR(OSQLMessageBox,NULL); + Construct(_rTitle, _rError.Message, _nStyle, _eImage); } @@ -523,6 +531,8 @@ ,m_pInfoButton(NULL) ,m_aNextChainElement(SQLExceptionInfo(_rError).get()) { + DBG_CTOR(OSQLMessageBox,NULL); + Construct(SQLExceptionInfo(_rError), _nStyle, _eImage); } @@ -535,6 +545,8 @@ ,m_pInfoButton(NULL) ,m_aNextChainElement(_rException.get()) { + DBG_CTOR(OSQLMessageBox,NULL); + Construct(_rException, _nStyle, _eImage); } @@ -546,6 +558,8 @@ ,m_aMessage(this,WB_WORDBREAK | WB_LEFT) ,m_pInfoButton(NULL) { + DBG_CTOR(OSQLMessageBox,NULL); + Construct(rTitle, rMessage, nStyle, eImage); } @@ -553,6 +567,8 @@ OSQLMessageBox::~OSQLMessageBox() { delete m_pInfoButton; + + DBG_DTOR(OSQLMessageBox,NULL); } //-------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
