diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 00:14:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 13:04:46 +0100 |
commit | 1c074d078bd2f95bb0f11007437a0ca01ae35c35 (patch) | |
tree | b8fc7e4c65ad5074c53566ec8ce5b901ee968413 /formula | |
parent | 5298b1b32d90002be8d09fe82955550c18eae8bc (diff) |
fix syntax
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/ui/dlg/funcutl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/formula/source/ui/dlg/funcutl.cxx b/formula/source/ui/dlg/funcutl.cxx index b780286671f5..e34c33de2d6d 100644 --- a/formula/source/ui/dlg/funcutl.cxx +++ b/formula/source/ui/dlg/funcutl.cxx @@ -929,7 +929,7 @@ void EditBox::UpdateOldSel() RefEdit::RefEdit( Window* _pParent,IControlReferenceHandler* pParent, const ResId& rResId ) : Edit( _pParent, rResId ), - pAnyRefDlg( pParent ), + pAnyRefDlg( pParent ) { aTimer.SetTimeoutHdl( LINK( this, RefEdit, UpdateHdl ) ); aTimer.SetTimeout( SC_ENABLE_TIME ); @@ -937,7 +937,7 @@ RefEdit::RefEdit( Window* _pParent,IControlReferenceHandler* pParent, const ResI RefEdit::RefEdit( Window* pParent, const ResId& rResId ) : Edit( pParent, rResId ), - pAnyRefDlg( NULL ), + pAnyRefDlg( NULL ) { } |