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
988948cb
Kaydet (Commit)
988948cb
authored
Eyl 18, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avmedia: problematic sal_Bool -> bool conversion when interacting with UNO
Change-Id: If6c52ed167a418f88d96b5d5a7319cd9a7bca11d
üst
77e4adbe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
manager.cxx
avmedia/source/win/manager.cxx
+1
-1
player.cxx
avmedia/source/win/player.cxx
+4
-4
player.hxx
avmedia/source/win/player.hxx
+4
-4
No files found.
avmedia/source/win/manager.cxx
Dosyayı görüntüle @
988948cb
...
...
@@ -77,7 +77,7 @@ OUString SAL_CALL Manager::getImplementationName( )
// ------------------------------------------------------------------------------
b
ool
SAL_CALL
Manager
::
supportsService
(
const
OUString
&
ServiceName
)
sal_B
ool
SAL_CALL
Manager
::
supportsService
(
const
OUString
&
ServiceName
)
throw
(
uno
::
RuntimeException
)
{
return
ServiceName
==
AVMEDIA_WIN_MANAGER_SERVICENAME
;
...
...
avmedia/source/win/player.cxx
Dosyayı görüntüle @
988948cb
...
...
@@ -249,7 +249,7 @@ void SAL_CALL Player::stop( )
// ------------------------------------------------------------------------------
b
ool
SAL_CALL
Player
::
isPlaying
()
sal_B
ool
SAL_CALL
Player
::
isPlaying
()
throw
(
uno
::
RuntimeException
)
{
OAFilterState
eFilterState
;
...
...
@@ -326,7 +326,7 @@ void SAL_CALL Player::setPlaybackLoop( bool bSet )
// ------------------------------------------------------------------------------
b
ool
SAL_CALL
Player
::
isPlaybackLoop
(
)
sal_B
ool
SAL_CALL
Player
::
isPlaybackLoop
(
)
throw
(
uno
::
RuntimeException
)
{
return
mbLooping
;
...
...
@@ -346,7 +346,7 @@ void SAL_CALL Player::setMute( bool bSet )
// ------------------------------------------------------------------------------
b
ool
SAL_CALL
Player
::
isMute
(
)
sal_B
ool
SAL_CALL
Player
::
isMute
(
)
throw
(
uno
::
RuntimeException
)
{
return
mbMuted
;
...
...
@@ -441,7 +441,7 @@ OUString SAL_CALL Player::getImplementationName( )
// ------------------------------------------------------------------------------
b
ool
SAL_CALL
Player
::
supportsService
(
const
OUString
&
ServiceName
)
sal_B
ool
SAL_CALL
Player
::
supportsService
(
const
OUString
&
ServiceName
)
throw
(
uno
::
RuntimeException
)
{
return
ServiceName
==
AVMEDIA_WIN_PLAYER_SERVICENAME
;
...
...
avmedia/source/win/player.hxx
Dosyayı görüntüle @
988948cb
...
...
@@ -71,15 +71,15 @@ public:
// XPlayer
virtual
void
SAL_CALL
start
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
stop
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
b
ool
SAL_CALL
isPlaying
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_B
ool
SAL_CALL
isPlaying
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getDuration
(
)
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
getRate
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setPlaybackLoop
(
bool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
b
ool
SAL_CALL
isPlaybackLoop
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_B
ool
SAL_CALL
isPlaybackLoop
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setMute
(
bool
bSet
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
b
ool
SAL_CALL
isMute
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_B
ool
SAL_CALL
isMute
(
)
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
::
com
::
sun
::
star
::
awt
::
Size
SAL_CALL
getPreferredPlayerWindowSize
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
@@ -88,7 +88,7 @@ public:
// XServiceInfo
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
);
private
:
...
...
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