diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-20 11:01:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-20 15:45:54 +0200 |
commit | e75e6b850a8791237dca6654b526831f1b0c7bc6 (patch) | |
tree | 4045cf93268dfa46c05417523e7236bf1ccc3738 /sfx2/source/appl/fileobj.cxx | |
parent | 6ea4b982fada0bbca957dfa0729e2c3225c8a460 (diff) |
loplugin:unusedfields
Change-Id: I9c80805788d49b13552c168a36fdf395da19df26
Reviewed-on: https://gerrit.libreoffice.org/53196
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/appl/fileobj.cxx')
-rw-r--r-- | sfx2/source/appl/fileobj.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx index 371d8839f75a..d785cec58fa8 100644 --- a/sfx2/source/appl/fileobj.cxx +++ b/sfx2/source/appl/fileobj.cxx @@ -56,10 +56,8 @@ SvFileObject::SvFileObject() , bWaitForData(false) , bInNewData(false) , bDataReady(false) - , bNativFormat(false) , bClearMedium(false) , bStateChangeCalled(false) - , bInCallDownload(false) { } @@ -175,9 +173,7 @@ bool SvFileObject::LoadFile_Impl() bWaitForData = true; tools::SvRef<SfxMedium> xTmpMed = xMed; - bInCallDownload = true; xMed->Download( LINK( this, SvFileObject, LoadGrfReady_Impl ) ); - bInCallDownload = false; bClearMedium = !xMed.is(); if( bClearMedium ) @@ -210,7 +206,7 @@ bool SvFileObject::GetGraphic_Impl( Graphic& rGrf, SvStream* pStream ) // To avoid that a native link is created if( !rGrf.IsGfxLink() && - !rGrf.GetContext() && !bNativFormat ) + !rGrf.GetContext() ) rGrf.SetGfxLink( GfxLink() ); if( !pStream ) @@ -370,7 +366,6 @@ IMPL_LINK_NOARG( SvFileObject, LoadGrfReady_Impl, void*, void ) // When we come form here there it can not be an error no more. bLoadError = false; bWaitForData = false; - bInCallDownload = false; if( !bInNewData && !bDataReady ) { |