Tag: cws_src680_oj14 User: oj Date: 2007-06-04 18:23:05+0000 Log: RESYNC: (1.7-1.9); FILE MERGED
File Changes: Directory: /dba/dbaccess/source/ui/dlg/ ======================================= File [changed]: directsql.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/dlg/directsql.cxx?r1=1.5.4.5&r2=1.5.4.6 Delta lines: +11 -20 --------------------- --- directsql.cxx 2006-11-07 09:22:05+0000 1.5.4.5 +++ directsql.cxx 2007-06-04 18:23:02+0000 1.5.4.6 @@ -105,17 +105,17 @@ //-------------------------------------------------------------------- DirectSQLDialog::DirectSQLDialog( Window* _pParent, const Reference< XConnection >& _rxConn ) :ModalDialog(_pParent, ModuleRes(DLG_DIRECTSQL)) - ,m_aFrame (this, ResId(FL_SQL)) - ,m_aSQLLabel (this, ResId(FT_SQL)) - ,m_aSQL (this, ResId(ME_SQL)) - ,m_aExecute (this, ResId(PB_EXECUTE)) - ,m_aHistoryLabel (this, ResId(FT_HISTORY)) - ,m_pSQLHistory(new LargeEntryListBox(this, ResId(LB_HISTORY))) - ,m_aStatusFrame (this, ResId(FL_STATUS)) - ,m_aStatus (this, ResId(ME_STATUS)) - ,m_aButtonSeparator (this, ResId(FL_BUTTONS)) - ,m_aHelp (this, ResId(PB_HELP)) - ,m_aClose (this, ResId(PB_CLOSE)) + ,m_aFrame (this, ModuleRes(FL_SQL)) + ,m_aSQLLabel (this, ModuleRes(FT_SQL)) + ,m_aSQL (this, ModuleRes(ME_SQL)) + ,m_aExecute (this, ModuleRes(PB_EXECUTE)) + ,m_aHistoryLabel (this, ModuleRes(FT_HISTORY)) + ,m_pSQLHistory(new LargeEntryListBox(this, ModuleRes(LB_HISTORY))) + ,m_aStatusFrame (this, ModuleRes(FL_STATUS)) + ,m_aStatus (this, ModuleRes(ME_STATUS)) + ,m_aButtonSeparator (this, ModuleRes(FL_BUTTONS)) + ,m_aHelp (this, ModuleRes(PB_HELP)) + ,m_aClose (this, ModuleRes(PB_CLOSE)) ,m_nHistoryLimit(20) ,m_nStatusCount(1) ,m_xConnection(_rxConn) @@ -187,15 +187,6 @@ } //-------------------------------------------------------------------- - void DirectSQLDialog::setHistoryLimit(sal_Int32 _nMaxEntries) - { - CHECK_INVARIANTS("DirectSQLDialog::setHistoryLimit"); - - m_nHistoryLimit = _nMaxEntries; - implEnsureHistoryLimit(); - } - - //-------------------------------------------------------------------- void DirectSQLDialog::implEnsureHistoryLimit() { CHECK_INVARIANTS("DirectSQLDialog::implEnsureHistoryLimit"); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
