Tag: cws_src680_dba24c User: fs Date: 2007-09-17 09:15:25+0000 Modified: dba/dbaccess/source/ui/control/sqledit.cxx dba/dbaccess/source/ui/control/undosqledit.cxx
Log: OverloadedSetText should not be necessary anymore, nowadays File Changes: Directory: /dba/dbaccess/source/ui/control/ =========================================== File [changed]: sqledit.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/control/sqledit.cxx?r1=1.9&r2=1.9.142.1 Delta lines: +4 -4 ------------------- --- sqledit.cxx 2006-09-17 07:02:29+0000 1.9 +++ sqledit.cxx 2007-09-17 09:15:22+0000 1.9.142.1 @@ -4,9 +4,9 @@ * * $RCSfile: sqledit.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.9.142.1 $ * - * last change: $Author: obo $ $Date: 2006/09/17 07:02:29 $ + * last change: $Author: fs $ $Date: 2007/09/17 09:15:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -177,7 +177,7 @@ } //------------------------------------------------------------------------------ -void OSqlEdit::OverloadedSetText(const String& rNewText) +void OSqlEdit::SetText(const String& rNewText) { DBG_CHKTHIS(OSqlEdit,NULL); if (m_timerUndoActionCreation.IsActive()) File [changed]: undosqledit.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/control/undosqledit.cxx?r1=1.4&r2=1.4.142.1 Delta lines: +4 -4 ------------------- --- undosqledit.cxx 2006-09-17 07:03:25+0000 1.4 +++ undosqledit.cxx 2007-09-17 09:15:22+0000 1.4.142.1 @@ -4,9 +4,9 @@ * * $RCSfile: undosqledit.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.4.142.1 $ * - * last change: $Author: obo $ $Date: 2006/09/17 07:03:25 $ + * last change: $Author: fs $ $Date: 2007/09/17 09:15:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,7 +49,7 @@ void OSqlEditUndoAct::ToggleText() { String strNext = m_pOwner->GetText(); - m_pOwner->OverloadedSetText(m_strNextText); + m_pOwner->SetText(m_strNextText); m_strNextText =strNext; } // ----------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
