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
25308124
Kaydet (Commit)
25308124
authored
Kas 02, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:stringconstant
Change-Id: Id051dd984c24fb34dcc89060ed11955fed61fd48
üst
5797d29e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
file_url.cxx
sal/osl/unx/file_url.cxx
+1
-1
osl_File.cxx
sal/qa/osl/file/osl_File.cxx
+1
-1
osl_Module.cxx
sal/qa/osl/module/osl_Module.cxx
+3
-3
No files found.
sal/osl/unx/file_url.cxx
Dosyayı görüntüle @
25308124
...
@@ -693,7 +693,7 @@ oslFileError osl_searchFileURL(rtl_uString* ustrFilePath, rtl_uString* ustrSearc
...
@@ -693,7 +693,7 @@ oslFileError osl_searchFileURL(rtl_uString* ustrFilePath, rtl_uString* ustrSearc
rtl
::
OUString
file_path
;
rtl
::
OUString
file_path
;
// try to interpret search path as file url else assume it's a system path list
// try to interpret search path as file url else assume it's a system path list
rc
=
FileBase
::
getSystemPathFromFileURL
(
rtl
::
OUString
(
ustrFilePath
)
,
file_path
);
rc
=
FileBase
::
getSystemPathFromFileURL
(
ustrFilePath
,
file_path
);
if
(
FileBase
::
E_INVAL
==
rc
)
if
(
FileBase
::
E_INVAL
==
rc
)
file_path
=
ustrFilePath
;
file_path
=
ustrFilePath
;
else
if
(
FileBase
::
E_None
!=
rc
)
else
if
(
FileBase
::
E_None
!=
rc
)
...
...
sal/qa/osl/file/osl_File.cxx
Dosyayı görüntüle @
25308124
...
@@ -4918,7 +4918,7 @@ namespace osl_Directory
...
@@ -4918,7 +4918,7 @@ namespace osl_Directory
void
with_relative_path
()
void
with_relative_path
()
{
{
FileBase
::
RC
rc
=
Directory
::
createPath
(
OUString
(
TEST_PATH_POSTFIX
)
);
FileBase
::
RC
rc
=
Directory
::
createPath
(
TEST_PATH_POSTFIX
);
CPPUNIT_ASSERT_MESSAGE
CPPUNIT_ASSERT_MESSAGE
(
(
...
...
sal/qa/osl/module/osl_Module.cxx
Dosyayı görüntüle @
25308124
...
@@ -135,7 +135,7 @@ namespace osl_Module
...
@@ -135,7 +135,7 @@ namespace osl_Module
#if !defined( MACOSX )
#if !defined( MACOSX )
// TODO: Find out why this fails on Mac OS X
// TODO: Find out why this fails on Mac OS X
::
osl
::
Module
aMod
(
getDllURL
(
)
);
::
osl
::
Module
aMod
(
getDllURL
(
)
);
FuncPtr
pFunc
=
reinterpret_cast
<
FuncPtr
>
(
aMod
.
getSymbol
(
rtl
::
OUString
(
"firstfunc"
)
));
FuncPtr
pFunc
=
reinterpret_cast
<
FuncPtr
>
(
aMod
.
getSymbol
(
"firstfunc"
));
OUString
aFileURL
;
OUString
aFileURL
;
bRes
=
osl
::
Module
::
getUrlFromAddress
(
bRes
=
osl
::
Module
::
getUrlFromAddress
(
...
@@ -258,7 +258,7 @@ namespace osl_Module
...
@@ -258,7 +258,7 @@ namespace osl_Module
#if !defined( MACOSX )
#if !defined( MACOSX )
// TODO: Find out why this fails on Mac OS X
// TODO: Find out why this fails on Mac OS X
::
osl
::
Module
aMod
(
getDllURL
(
)
);
::
osl
::
Module
aMod
(
getDllURL
(
)
);
FuncPtr
pFunc
=
reinterpret_cast
<
FuncPtr
>
(
aMod
.
getSymbol
(
rtl
::
OUString
(
"firstfunc"
)
));
FuncPtr
pFunc
=
reinterpret_cast
<
FuncPtr
>
(
aMod
.
getSymbol
(
"firstfunc"
));
bRes
=
false
;
bRes
=
false
;
if
(
pFunc
)
if
(
pFunc
)
bRes
=
pFunc
(
bRes
);
bRes
=
pFunc
(
bRes
);
...
@@ -337,7 +337,7 @@ namespace osl_Module
...
@@ -337,7 +337,7 @@ namespace osl_Module
#if !defined( MACOSX )
#if !defined( MACOSX )
// TODO: Find out why this fails on Mac OS X
// TODO: Find out why this fails on Mac OS X
::
osl
::
Module
aMod
(
getDllURL
(
)
);
::
osl
::
Module
aMod
(
getDllURL
(
)
);
oslGenericFunction
oslFunc
=
aMod
.
getFunctionSymbol
(
rtl
::
OUString
(
"firstfunc"
)
);
oslGenericFunction
oslFunc
=
aMod
.
getFunctionSymbol
(
"firstfunc"
);
::
rtl
::
OUString
aLibraryURL
;
::
rtl
::
OUString
aLibraryURL
;
bRes
=
::
osl
::
Module
::
getUrlFromAddress
(
oslFunc
,
aLibraryURL
);
bRes
=
::
osl
::
Module
::
getUrlFromAddress
(
oslFunc
,
aLibraryURL
);
aMod
.
unload
();
aMod
.
unload
();
...
...
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