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
1b297589
Kaydet (Commit)
1b297589
authored
Tem 18, 2013
tarafından
Minh Ngo
Kaydeden (comit)
Michael Meeks
Tem 26, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixing a manager class
Change-Id: Icaaa3e33ebb0e2ca650a279a8b094fbddbff2a4d
üst
2bff2270
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
vlcmanager.cxx
avmedia/source/vlc/vlcmanager.cxx
+6
-3
vlcmanager.hxx
avmedia/source/vlc/vlcmanager.hxx
+1
-1
vlcwindow.cxx
avmedia/source/vlc/vlcwindow.cxx
+0
-1
No files found.
avmedia/source/vlc/vlcmanager.cxx
Dosyayı görüntüle @
1b297589
...
@@ -7,6 +7,7 @@ namespace avmedia {
...
@@ -7,6 +7,7 @@ namespace avmedia {
namespace
vlc
{
namespace
vlc
{
const
rtl
::
OUString
VLC_IMPLEMENTATION_NAME
=
"com.sun.star.comp.avmedia.Manager_VLC"
;
const
rtl
::
OUString
VLC_IMPLEMENTATION_NAME
=
"com.sun.star.comp.avmedia.Manager_VLC"
;
const
::
rtl
::
OUString
VLC_SERVICENAME
=
"com.sun.star.media.Manager_VLC"
;
Manager
::
Manager
(
const
uno
::
Reference
<
lang
::
XMultiServiceFactory
>&
rxMgr
)
Manager
::
Manager
(
const
uno
::
Reference
<
lang
::
XMultiServiceFactory
>&
rxMgr
)
:
mxMgr
(
rxMgr
)
:
mxMgr
(
rxMgr
)
...
@@ -32,16 +33,18 @@ rtl::OUString SAL_CALL Manager::getImplementationName()
...
@@ -32,16 +33,18 @@ rtl::OUString SAL_CALL Manager::getImplementationName()
return
VLC_IMPLEMENTATION_NAME
;
return
VLC_IMPLEMENTATION_NAME
;
}
}
sal_Bool
SAL_CALL
Manager
::
supportsService
(
const
rtl
::
OUString
&
S
erviceName
)
sal_Bool
SAL_CALL
Manager
::
supportsService
(
const
rtl
::
OUString
&
s
erviceName
)
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
)
{
{
return
false
;
return
serviceName
==
VLC_SERVICENAME
;
}
}
uno
::
Sequence
<
rtl
::
OUString
>
SAL_CALL
Manager
::
getSupportedServiceNames
()
uno
::
Sequence
<
rtl
::
OUString
>
SAL_CALL
Manager
::
getSupportedServiceNames
()
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
)
{
{
return
uno
::
Sequence
<
rtl
::
OUString
>
();
::
uno
::
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
VLC_SERVICENAME
;
return
aRet
;
}
}
}
// end namespace vlc
}
// end namespace vlc
...
...
avmedia/source/vlc/vlcmanager.hxx
Dosyayı görüntüle @
1b297589
...
@@ -37,7 +37,7 @@ public:
...
@@ -37,7 +37,7 @@ public:
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
media
::
XPlayer
>
SAL_CALL
createPlayer
(
const
rtl
::
OUString
&
aURL
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
media
::
XPlayer
>
SAL_CALL
createPlayer
(
const
rtl
::
OUString
&
aURL
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
rtl
::
OUString
SAL_CALL
getImplementationName
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
rtl
::
OUString
SAL_CALL
getImplementationName
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
sal_Bool
SAL_CALL
supportsService
(
const
rtl
::
OUString
&
S
erviceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
sal_Bool
SAL_CALL
supportsService
(
const
rtl
::
OUString
&
s
erviceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
Sequence
<
rtl
::
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
Sequence
<
rtl
::
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
private
:
private
:
...
...
avmedia/source/vlc/vlcwindow.cxx
Dosyayı görüntüle @
1b297589
...
@@ -82,7 +82,6 @@ void SAL_CALL VLCWindow::setVisible( sal_Bool Visible )
...
@@ -82,7 +82,6 @@ void SAL_CALL VLCWindow::setVisible( sal_Bool Visible )
void
SAL_CALL
VLCWindow
::
setEnable
(
sal_Bool
Enable
)
void
SAL_CALL
VLCWindow
::
setEnable
(
sal_Bool
Enable
)
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
)
{
{
std
::
cout
<<
__PRETTY_FUNCTION__
<<
" "
<<
Enable
<<
std
::
endl
;
}
}
void
SAL_CALL
VLCWindow
::
setFocus
()
void
SAL_CALL
VLCWindow
::
setFocus
()
...
...
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