INTEGRATION: CWS impress122 (1.85.28); FILE MERGED

2007/06/14 15:18:04 sj 1.85.28.1: #i24969# fixed sound loop/stop for slide transitions
This commit is contained in:
Jens-Heiner Rechtien 2007-06-27 14:38:15 +00:00
parent 29ac144e65
commit 2c56bf68b5

View file

@ -4,9 +4,9 @@
*
* $RCSfile: pptin.cxx,v $
*
* $Revision: 1.85 $
* $Revision: 1.86 $
*
* last change: $Author: kz $ $Date: 2007-05-10 15:23:35 $
* last change: $Author: hr $ $Date: 2007-06-27 15:38:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -1930,8 +1930,10 @@ void ImplSdPPTImport::ImportPageEffect( SdPage* pPage, const sal_Bool bNewAnimat
String aSoundFile( ReadSound( nSoundRef ) );
pPage->SetSoundFile( aSoundFile );
}
// if ( nBuildFlags & ( 1 << 6 ) ) Loop until next sound: wird nicht unterstuetzt
// if ( nBuildFlags & ( 1 << 8 ) ) Stop the previous sound: wird nicht unterstuetzt
if ( nBuildFlags & ( 1 << 6 ) ) // Loop until next sound
pPage->SetLoopSound( sal_True );
if ( nBuildFlags & ( 1 << 8 ) ) // Stop the previous sound
pPage->SetStopSound( sal_True );
break;
}
}