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
a33b4428
Kaydet (Commit)
a33b4428
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avmedia: Use appropriate OUString functions on string constants
Change-Id: Ie2e2737c1a3eafd9da2472ef354624b67b09ff80
üst
b9835299
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
10 deletions
+9
-10
soundhandler.cxx
avmedia/source/framework/soundhandler.cxx
+1
-2
oglframegrabber.cxx
avmedia/source/opengl/oglframegrabber.cxx
+1
-1
oglmanager.cxx
avmedia/source/opengl/oglmanager.cxx
+1
-1
oglplayer.cxx
avmedia/source/opengl/oglplayer.cxx
+1
-1
oglwindow.cxx
avmedia/source/opengl/oglwindow.cxx
+1
-1
framegrabber.mm
avmedia/source/quicktime/framegrabber.mm
+1
-1
manager.mm
avmedia/source/quicktime/manager.mm
+1
-1
player.mm
avmedia/source/quicktime/player.mm
+1
-1
window.mm
avmedia/source/quicktime/window.mm
+1
-1
No files found.
avmedia/source/framework/soundhandler.cxx
Dosyayı görüntüle @
a33b4428
...
...
@@ -107,7 +107,6 @@ css::uno::Sequence< css::uno::Type > SAL_CALL SoundHandler::getTypes() throw( cs
}
#define IMPLEMENTATIONNAME_SOUNDHANDLER OUString("com.sun.star.comp.framework.SoundHandler")
#define SERVICENAME_CONTENTHANDLER OUString("com.sun.star.frame.ContentHandler")
/*===========================================================================================================*/
/* XServiceInfo */
...
...
@@ -133,7 +132,7 @@ css::uno::Sequence< OUString > SAL_CALL SoundHandler::getSupportedServiceNames()
css
::
uno
::
Sequence
<
OUString
>
SoundHandler
::
impl_getStaticSupportedServiceNames
()
{
css
::
uno
::
Sequence
<
OUString
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
SERVICENAME_CONTENTHANDLER
;
seqServiceNames
.
getArray
()
[
0
]
=
"com.sun.star.frame.ContentHandler"
;
return
seqServiceNames
;
}
...
...
avmedia/source/opengl/oglframegrabber.cxx
Dosyayı görüntüle @
a33b4428
...
...
@@ -64,7 +64,7 @@ uno::Sequence< OUString > SAL_CALL OGLFrameGrabber::getSupportedServiceNames()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
uno
::
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.media.FrameGrabber_OpenGL"
)
;
aRet
[
0
]
=
"com.sun.star.media.FrameGrabber_OpenGL"
;
return
aRet
;
}
...
...
avmedia/source/opengl/oglmanager.cxx
Dosyayı görüntüle @
a33b4428
...
...
@@ -56,7 +56,7 @@ uno::Sequence< OUString > SAL_CALL OGLManager::getSupportedServiceNames()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
::
uno
::
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.media.Manager_OpenGL"
)
;
aRet
[
0
]
=
"com.sun.star.media.Manager_OpenGL"
;
return
aRet
;
}
...
...
avmedia/source/opengl/oglplayer.cxx
Dosyayı görüntüle @
a33b4428
...
...
@@ -353,7 +353,7 @@ uno::Sequence< OUString > SAL_CALL OGLPlayer::getSupportedServiceNames()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
uno
::
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.media.Player_OpenGL"
)
;
aRet
[
0
]
=
"com.sun.star.media.Player_OpenGL"
;
return
aRet
;
}
...
...
avmedia/source/opengl/oglwindow.cxx
Dosyayı görüntüle @
a33b4428
...
...
@@ -71,7 +71,7 @@ sal_Bool SAL_CALL OGLWindow::supportsService( const OUString& rServiceName ) thr
uno
::
Sequence
<
OUString
>
SAL_CALL
OGLWindow
::
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
uno
::
Sequence
<
OUString
>
aRet
(
1
);
aRet
[
0
]
=
OUString
(
"com.sun.star.media.Window_OpenGL"
)
;
aRet
[
0
]
=
"com.sun.star.media.Window_OpenGL"
;
return
aRet
;
}
...
...
avmedia/source/quicktime/framegrabber.mm
Dosyayı görüntüle @
a33b4428
...
...
@@ -129,7 +129,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL FrameGrabber::getSupportedServiceNames
throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aRet(1);
aRet[0] =
::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME )
;
aRet[0] =
AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME
;
return aRet;
}
...
...
avmedia/source/quicktime/manager.mm
Dosyayı görüntüle @
a33b4428
...
...
@@ -80,7 +80,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL Manager::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aRet(1);
aRet[0] =
::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_SERVICENAME )
;
aRet[0] =
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME
;
return aRet;
}
...
...
avmedia/source/quicktime/player.mm
Dosyayı görüntüle @
a33b4428
...
...
@@ -383,7 +383,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL Player::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aRet(1);
aRet[0] =
::rtl::OUString( AVMEDIA_QUICKTIME_PLAYER_SERVICENAME )
;
aRet[0] =
AVMEDIA_QUICKTIME_PLAYER_SERVICENAME
;
return aRet;
}
...
...
avmedia/source/quicktime/window.mm
Dosyayı görüntüle @
a33b4428
...
...
@@ -274,7 +274,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL Window::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aRet(1);
aRet[0] =
::rtl::OUString( AVMEDIA_QUICKTIME_WINDOW_SERVICENAME )
;
aRet[0] =
AVMEDIA_QUICKTIME_WINDOW_SERVICENAME
;
return aRet;
}
...
...
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