diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-28 09:02:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-28 09:02:49 +0100 |
commit | 625ddeb48632ab60a09a9cf7a109e7f00afcacf2 (patch) | |
tree | b0cbe8fa9c45db608ed5c65b126ff3d46d8eedcb /editeng | |
parent | 36a665a6754bbc4bb0a2d612a15b1b8413af3721 (diff) |
callcatcher: ditch various unused methods
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/inc/editeng/editview.hxx | 1 | ||||
-rw-r--r-- | editeng/source/editeng/editview.cxx | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/editeng/inc/editeng/editview.hxx b/editeng/inc/editeng/editview.hxx index 745b14859ec9..801a2dcbcf4a 100644 --- a/editeng/inc/editeng/editview.hxx +++ b/editeng/inc/editeng/editview.hxx @@ -181,7 +181,6 @@ public: void RemoveAttribsKeepLanguages( sal_Bool bRemoveParaAttribs = sal_False ); sal_uLong Read( SvStream& rInput, const String& rBaseURL, EETextFormat eFormat, sal_Bool bSelect = sal_False, SvKeyValueIterator* pHTTPHeaderAttrs = NULL ); - sal_uLong Write( SvStream& rOutput, EETextFormat eFormat ); void SetBackgroundColor( const Color& rColor ); Color GetBackgroundColor() const; diff --git a/editeng/source/editeng/editview.cxx b/editeng/source/editeng/editview.cxx index ff12f775ceb1..e324b7beca1d 100644 --- a/editeng/source/editeng/editview.cxx +++ b/editeng/source/editeng/editview.cxx @@ -601,15 +601,6 @@ sal_uLong EditView::Read( SvStream& rInput, const String& rBaseURL, EETextFormat return rInput.GetError(); } -sal_uLong EditView::Write( SvStream& rOutput, EETextFormat eFormat ) -{ - DBG_CHKTHIS( EditView, 0 ); - DBG_CHKOBJ( pImpEditView->pEditEngine, EditEngine, 0 ); - PIMPEE->Write( rOutput, eFormat, pImpEditView->GetEditSelection() ); - ShowCursor(); - return rOutput.GetError(); -} - void EditView::Cut() { DBG_CHKTHIS( EditView, 0 ); |