diff options
author | Elton Chung <elton@layerjet.com> | 2012-02-18 14:19:49 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-18 09:34:48 +0000 |
commit | 78e9ba6febb7402d4661fbf7934a2526efc8629a (patch) | |
tree | fb409d64f0006c998c75d26dba37192dbc76e093 /editeng | |
parent | ab2f830bbbb2a8ae2afad13b2a98df553e7196cc (diff) |
Remove unused code
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/inc/editeng/unoedhlp.hxx | 3 | ||||
-rw-r--r-- | editeng/source/uno/unoedhlp.cxx | 15 |
2 files changed, 0 insertions, 18 deletions
diff --git a/editeng/inc/editeng/unoedhlp.hxx b/editeng/inc/editeng/unoedhlp.hxx index 5d8caa616aef..cb3729295e4a 100644 --- a/editeng/inc/editeng/unoedhlp.hxx +++ b/editeng/inc/editeng/unoedhlp.hxx @@ -61,9 +61,6 @@ public: sal_uLong GetValue() const; sal_uLong GetStartValue() const; sal_uLong GetEndValue() const; - void SetValue( sal_uLong n ); - void SetStartValue( sal_uLong n ); - void SetEndValue( sal_uLong n ); }; /** Helper class for common functionality in edit sources diff --git a/editeng/source/uno/unoedhlp.cxx b/editeng/source/uno/unoedhlp.cxx index 57d50f034477..fb1b03322350 100644 --- a/editeng/source/uno/unoedhlp.cxx +++ b/editeng/source/uno/unoedhlp.cxx @@ -63,21 +63,6 @@ sal_uLong SvxEditSourceHint::GetEndValue() const return mnEnd; } -void SvxEditSourceHint::SetValue( sal_uLong n ) -{ - TextHint::SetValue( n ); -} - -void SvxEditSourceHint::SetStartValue( sal_uLong n ) -{ - mnStart = n; -} - -void SvxEditSourceHint::SetEndValue( sal_uLong n ) -{ - mnEnd = n; -} - //------------------------------------------------------------------------ ::std::auto_ptr<SfxHint> SvxEditSourceHelper::EENotification2Hint( EENotify* aNotify ) |