Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
f5b299e6
Kaydet (Commit)
f5b299e6
authored
Eyl 18, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avmedia: more sal_Bool -> bool reverts
Change-Id: Ifca52136a90411a60dc11458f09670d72d5d70a7
üst
1fe4aa6e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
manager.hxx
avmedia/source/win/manager.hxx
+1
-1
player.cxx
avmedia/source/win/player.cxx
+2
-2
player.hxx
avmedia/source/win/player.hxx
+2
-2
No files found.
avmedia/source/win/manager.hxx
Dosyayı görüntüle @
f5b299e6
...
@@ -52,7 +52,7 @@ public:
...
@@ -52,7 +52,7 @@ public:
// XServiceInfo
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
b
ool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_B
ool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
private
:
private
:
...
...
avmedia/source/win/player.cxx
Dosyayı görüntüle @
f5b299e6
...
@@ -318,7 +318,7 @@ double SAL_CALL Player::getRate( )
...
@@ -318,7 +318,7 @@ double SAL_CALL Player::getRate( )
// ------------------------------------------------------------------------------
// ------------------------------------------------------------------------------
void
SAL_CALL
Player
::
setPlaybackLoop
(
b
ool
bSet
)
void
SAL_CALL
Player
::
setPlaybackLoop
(
sal_B
ool
bSet
)
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
)
{
{
mbLooping
=
bSet
;
mbLooping
=
bSet
;
...
@@ -334,7 +334,7 @@ sal_Bool SAL_CALL Player::isPlaybackLoop( )
...
@@ -334,7 +334,7 @@ sal_Bool SAL_CALL Player::isPlaybackLoop( )
// ------------------------------------------------------------------------------
// ------------------------------------------------------------------------------
void
SAL_CALL
Player
::
setMute
(
b
ool
bSet
)
void
SAL_CALL
Player
::
setMute
(
sal_B
ool
bSet
)
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
)
{
{
if
(
mpBA
&&
(
mbMuted
!=
bSet
)
)
if
(
mpBA
&&
(
mbMuted
!=
bSet
)
)
...
...
avmedia/source/win/player.hxx
Dosyayı görüntüle @
f5b299e6
...
@@ -76,9 +76,9 @@ public:
...
@@ -76,9 +76,9 @@ public:
virtual
void
SAL_CALL
setMediaTime
(
double
fTime
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setMediaTime
(
double
fTime
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getMediaTime
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getMediaTime
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getRate
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getRate
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setPlaybackLoop
(
b
ool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setPlaybackLoop
(
sal_B
ool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isPlaybackLoop
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isPlaybackLoop
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setMute
(
b
ool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setMute
(
sal_B
ool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isMute
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isMute
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setVolumeDB
(
sal_Int16
nVolumeDB
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setVolumeDB
(
sal_Int16
nVolumeDB
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getVolumeDB
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getVolumeDB
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment