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
0ad5204d
Kaydet (Commit)
0ad5204d
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sdext: Use appropriate OUString functions on string constants
Change-Id: I6815b791b935bffe6409af2bcfdd6d6adceb2252
üst
cb9e8bbd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
9 deletions
+7
-9
configurationaccess.cxx
sdext/source/minimizer/configurationaccess.cxx
+3
-4
pppoptimizerdialog.cxx
sdext/source/minimizer/pppoptimizerdialog.cxx
+1
-1
filterdet.cxx
sdext/source/pdfimport/filterdet.cxx
+1
-2
PresenterFrameworkObserver.cxx
sdext/source/presenter/PresenterFrameworkObserver.cxx
+1
-1
PresenterScreen.cxx
sdext/source/presenter/PresenterScreen.cxx
+1
-1
No files found.
sdext/source/minimizer/configurationaccess.cxx
Dosyayı görüntüle @
0ad5204d
...
@@ -305,11 +305,10 @@ Reference< XInterface > ConfigurationAccess::OpenConfiguration( bool bReadOnly )
...
@@ -305,11 +305,10 @@ Reference< XInterface > ConfigurationAccess::OpenConfiguration( bool bReadOnly )
PropertyState_DIRECT_VALUE
)
);
PropertyState_DIRECT_VALUE
)
);
OUString
sAccessService
;
OUString
sAccessService
;
if
(
bReadOnly
)
if
(
bReadOnly
)
sAccessService
=
OUString
(
sAccessService
=
"com.sun.star.configuration.ConfigurationAccess"
;
"com.sun.star.configuration.ConfigurationAccess"
);
else
else
sAccessService
=
OUString
(
sAccessService
=
"com.sun.star.configuration.ConfigurationUpdateAccess"
)
;
"com.sun.star.configuration.ConfigurationUpdateAccess"
;
xRoot
=
xProvider
->
createInstanceWithArguments
(
xRoot
=
xProvider
->
createInstanceWithArguments
(
sAccessService
,
aCreationArguments
);
sAccessService
,
aCreationArguments
);
...
...
sdext/source/minimizer/pppoptimizerdialog.cxx
Dosyayı görüntüle @
0ad5204d
...
@@ -164,7 +164,7 @@ Sequence< OUString > PPPOptimizerDialog_getSupportedServiceNames()
...
@@ -164,7 +164,7 @@ Sequence< OUString > PPPOptimizerDialog_getSupportedServiceNames()
{
{
Sequence
<
OUString
>
aRet
(
1
);
Sequence
<
OUString
>
aRet
(
1
);
OUString
*
pArray
=
aRet
.
getArray
();
OUString
*
pArray
=
aRet
.
getArray
();
pArray
[
0
]
=
OUString
(
SERVICE_NAME
)
;
pArray
[
0
]
=
SERVICE_NAME
;
return
aRet
;
return
aRet
;
}
}
...
...
sdext/source/pdfimport/filterdet.cxx
Dosyayı görüntüle @
0ad5204d
...
@@ -323,8 +323,7 @@ OUString SAL_CALL PDFDetector::detect( uno::Sequence< beans::PropertyValue >& rF
...
@@ -323,8 +323,7 @@ OUString SAL_CALL PDFDetector::detect( uno::Sequence< beans::PropertyValue >& rF
{
{
nFilterNamePos
=
nAttribs
;
nFilterNamePos
=
nAttribs
;
rFilterData
.
realloc
(
++
nAttribs
);
rFilterData
.
realloc
(
++
nAttribs
);
rFilterData
[
nFilterNamePos
].
Name
=
rFilterData
[
nFilterNamePos
].
Name
=
"FilterName"
;
OUString
(
"FilterName"
);
}
}
aOutTypeName
=
"pdf_Portable_Document_Format"
;
aOutTypeName
=
"pdf_Portable_Document_Format"
;
...
...
sdext/source/presenter/PresenterFrameworkObserver.cxx
Dosyayı görüntüle @
0ad5204d
...
@@ -121,7 +121,7 @@ void SAL_CALL PresenterFrameworkObserver::notifyConfigurationChange (
...
@@ -121,7 +121,7 @@ void SAL_CALL PresenterFrameworkObserver::notifyConfigurationChange (
Action
aAction
(
maAction
);
Action
aAction
(
maAction
);
Predicate
aPredicate
(
maPredicate
);
Predicate
aPredicate
(
maPredicate
);
if
(
rEvent
.
Type
.
equals
(
"ConfigurationUpdateEnd"
)
)
if
(
rEvent
.
Type
==
"ConfigurationUpdateEnd"
)
{
{
Shutdown
();
Shutdown
();
aAction
(
aPredicate
);
aAction
(
aPredicate
);
...
...
sdext/source/presenter/PresenterScreen.cxx
Dosyayı görüntüle @
0ad5204d
...
@@ -677,7 +677,7 @@ void PresenterScreen::ProcessLayout (
...
@@ -677,7 +677,7 @@ void PresenterScreen::ProcessLayout (
{
{
Reference
<
container
::
XHierarchicalNameAccess
>
xLayoutNode
(
Reference
<
container
::
XHierarchicalNameAccess
>
xLayoutNode
(
rConfiguration
.
GetConfigurationNode
(
rConfiguration
.
GetConfigurationNode
(
OUString
(
"Presenter/Layouts/"
)
+
rsLayoutName
),
"Presenter/Layouts/"
+
rsLayoutName
),
UNO_QUERY_THROW
);
UNO_QUERY_THROW
);
// Read the parent layout first, if one is referenced.
// Read the parent layout first, if one is referenced.
...
...
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