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
7f09f384
Kaydet (Commit)
7f09f384
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
shell: Use appropriate OUString functions on string constants
Change-Id: I3b2c0a4200fa953162f40eff49289052962e73d2
üst
70e56ffe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
localebackend.cxx
shell/source/backends/localebe/localebackend.cxx
+2
-2
macbackend.mm
shell/source/backends/macbe/macbackend.mm
+1
-1
shellexec.cxx
shell/source/unix/exec/shellexec.cxx
+3
-3
No files found.
shell/source/backends/localebe/localebackend.cxx
Dosyayı görüntüle @
7f09f384
...
...
@@ -284,12 +284,12 @@ css::uno::Any LocaleBackend::getPropertyValue(
return
css
::
uno
::
makeAny
(
css
::
beans
::
Optional
<
css
::
uno
::
Any
>
(
true
,
css
::
uno
::
makeAny
(
getLocale
())));
}
else
if
(
PropertyName
.
equals
(
"SystemLocale"
)
)
}
else
if
(
PropertyName
==
"SystemLocale"
)
{
return
css
::
uno
::
makeAny
(
css
::
beans
::
Optional
<
css
::
uno
::
Any
>
(
true
,
css
::
uno
::
makeAny
(
getSystemLocale
())));
}
else
if
(
PropertyName
.
equals
(
"UILocale"
)
)
}
else
if
(
PropertyName
==
"UILocale"
)
{
return
css
::
uno
::
makeAny
(
css
::
beans
::
Optional
<
css
::
uno
::
Any
>
(
...
...
shell/source/backends/macbe/macbackend.mm
Dosyayı görüntüle @
7f09f384
...
...
@@ -452,7 +452,7 @@ rtl::OUString SAL_CALL MacOSXBackend::getImplementationName(void)
uno::Sequence<rtl::OUString> SAL_CALL MacOSXBackend::getBackendServiceNames(void)
{
uno::Sequence<rtl::OUString> aServiceNameList(1);
aServiceNameList[0] =
rtl::OUString( "com.sun.star.configuration.backend.MacOSXBackend")
;
aServiceNameList[0] =
"com.sun.star.configuration.backend.MacOSXBackend"
;
return aServiceNameList;
}
...
...
shell/source/unix/exec/shellexec.cxx
Dosyayı görüntüle @
7f09f384
...
...
@@ -134,7 +134,7 @@ void SAL_CALL ShellExec::execute( const OUString& aCommand, const OUString& aPar
if
(
aURL
.
isEmpty
()
&&
!
aCommand
.
isEmpty
()
)
{
throw
RuntimeException
(
OUString
(
"Cannot translate URI reference to external format: "
)
"Cannot translate URI reference to external format: "
+
aCommand
,
static_cast
<
cppu
::
OWeakObject
*
>
(
this
));
}
...
...
@@ -224,8 +224,8 @@ void SAL_CALL ShellExec::execute( const OUString& aCommand, const OUString& aPar
}
else
if
((
nFlags
&
css
::
system
::
SystemShellExecuteFlags
::
URIS_ONLY
)
!=
0
)
{
throw
css
::
lang
::
IllegalArgumentException
(
OUString
(
"XSystemShellExecute.execute URIS_ONLY with non-absolute"
" URI reference "
)
"XSystemShellExecute.execute URIS_ONLY with non-absolute"
" URI reference "
+
aCommand
,
static_cast
<
cppu
::
OWeakObject
*
>
(
this
),
0
);
}
else
{
...
...
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