diff options
author | Kai Ahrens <ka@openoffice.org> | 2000-10-20 14:06:47 +0000 |
---|---|---|
committer | Kai Ahrens <ka@openoffice.org> | 2000-10-20 14:06:47 +0000 |
commit | 3dd6eff0c3880841ce46e19a26c2def01407baaf (patch) | |
tree | 944df1ce988d1aa59f1077ad9641e1744e6a4ee6 /svx | |
parent | 2e3ad0d35979a26bccaefd453a6ce3f7af30a32c (diff) |
#79670#: Reset stream error after try to swap in
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdograf.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx index 1358f785a7ce..47a756a22984 100644 --- a/svx/source/svdraw/svdograf.cxx +++ b/svx/source/svdraw/svdograf.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdograf.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: ka $ $Date: 2000-10-11 15:19:18 $ + * last change: $Author: ka $ $Date: 2000-10-20 15:06:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2013,6 +2013,7 @@ IMPL_LINK( SdrGrafObj, ImpSwapHdl, GraphicObject*, pO ) pStream->Seek( nGrafStreamPos ); *pStream >> aGraphic; pGraphic->SetGraphic( aGraphic ); + pStream->ResetError(); if( bDeleteStream ) delete pStream; |