summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/control/sqledit.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:36:57 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:36:57 +0000
commit614c1557b8883a89b926e211bdbc4fe05cf6a379 (patch)
tree7ba29dc9f0c8ec3ae5361b0bdd306c4db1b97ea9 /dbaccess/source/ui/control/sqledit.cxx
parentINTEGRATION: CWS insight01 (1.11.16); FILE MERGED (diff)
downloadcore-614c1557b8883a89b926e211bdbc4fe05cf6a379.tar.gz
core-614c1557b8883a89b926e211bdbc4fe05cf6a379.zip
INTEGRATION: CWS insight01 (1.5.126); FILE MERGED
2004/07/15 10:52:33 oj 1.5.126.2: add chkthis macros 2004/07/09 14:05:15 oj 1.5.126.1: resource changes
Diffstat (limited to 'dbaccess/source/ui/control/sqledit.cxx')
-rw-r--r--dbaccess/source/ui/control/sqledit.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/ui/control/sqledit.cxx b/dbaccess/source/ui/control/sqledit.cxx
index a8519ca18a01..69596214e735 100644
--- a/dbaccess/source/ui/control/sqledit.cxx
+++ b/dbaccess/source/ui/control/sqledit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sqledit.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: fs $ $Date: 2001-08-23 14:47:34 $
+ * last change: $Author: hr $ $Date: 2004-08-02 15:36:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -110,9 +110,9 @@ OSqlEdit::OSqlEdit( OQueryTextView* pParent, WinBits nWinStyle ) :
//------------------------------------------------------------------------------
OSqlEdit::~OSqlEdit()
{
+ DBG_DTOR(OSqlEdit,NULL);
if (m_timerUndoActionCreation.IsActive())
m_timerUndoActionCreation.Stop();
- DBG_DTOR(OSqlEdit,NULL);
}
//------------------------------------------------------------------------------
void OSqlEdit::KeyInput( const KeyEvent& rKEvt )
@@ -148,14 +148,14 @@ sal_Bool OSqlEdit::IsInAccelAct()
void OSqlEdit::GetFocus()
{
DBG_CHKTHIS(OSqlEdit,NULL);
- m_strOrigText = GetText();
+ m_strOrigText =GetText();
MultiLineEdit::GetFocus();
}
//------------------------------------------------------------------------------
IMPL_LINK(OSqlEdit, OnUndoActionTimer, void*, EMPTYARG)
{
- String aText = GetText();
+ String aText =GetText();
if(aText != m_strOrigText)
{
SfxUndoManager* pUndoMgr = m_pView->getContainerWindow()->getDesignView()->getController()->getUndoMgr();
@@ -167,7 +167,7 @@ IMPL_LINK(OSqlEdit, OnUndoActionTimer, void*, EMPTYARG)
m_pView->getContainerWindow()->getDesignView()->getController()->InvalidateFeature(SID_UNDO);
m_pView->getContainerWindow()->getDesignView()->getController()->InvalidateFeature(SID_REDO);
- m_strOrigText = aText;
+ m_strOrigText =aText;
}
return 0L;
@@ -210,7 +210,7 @@ void OSqlEdit::OverloadedSetText(const String& rNewText)
}
MultiLineEdit::SetText(rNewText);
- m_strOrigText = rNewText;
+ m_strOrigText =rNewText;
}
// -----------------------------------------------------------------------------
void OSqlEdit::stopTimer()