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
d08ef4d2
Kaydet (Commit)
d08ef4d2
authored
Eki 16, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
random OUString to String conversions
Change-Id: I9cfb8e7183b9cce7c690f3a43a64b61a2aa8c754
üst
218775e1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
dlgevtatt.cxx
scripting/source/dlgprov/dlgevtatt.cxx
+1
-1
rehearsetimingsactivity.cxx
slideshow/source/engine/rehearsetimingsactivity.cxx
+1
-2
test_nodetotextvisitors.cxx
starmath/qa/cppunit/test_nodetotextvisitors.cxx
+3
-3
cfgitem.cxx
starmath/source/cfgitem.cxx
+1
-1
macros-test.cxx
sw/qa/core/macros-test.cxx
+1
-1
No files found.
scripting/source/dlgprov/dlgevtatt.cxx
Dosyayı görüntüle @
d08ef4d2
...
...
@@ -633,7 +633,7 @@ namespace dlgprov
ResMgr
*
pResMgr
=
SFX_APP
()
->
GetSfxResManager
();
if
(
pResMgr
)
{
String
aRes
(
ResId
(
STR_ERRUNOEVENTBINDUNG
,
*
pResMgr
)
);
OU
String
aRes
(
ResId
(
STR_ERRUNOEVENTBINDUNG
,
*
pResMgr
)
);
OUString
aQuoteChar
(
"
\"
"
);
OUString
aOURes
=
aRes
;
...
...
slideshow/source/engine/rehearsetimingsactivity.cxx
Dosyayı görüntüle @
d08ef4d2
...
...
@@ -163,8 +163,7 @@ RehearseTimingsActivity::RehearseTimingsActivity( const SlideShowContext& rConte
blackHole
.
SetMapMode
(
MAP_PIXEL
);
Rectangle
rect
;
const
FontMetric
metric
(
blackHole
.
GetFontMetric
()
);
blackHole
.
GetTextBoundRect
(
rect
,
String
(
"XX:XX:XX"
)
);
blackHole
.
GetTextBoundRect
(
rect
,
OUString
(
"XX:XX:XX"
)
);
maSpriteSizePixel
.
setX
(
rect
.
getWidth
()
*
12
/
10
);
maSpriteSizePixel
.
setY
(
metric
.
GetLineHeight
()
*
11
/
10
);
mnYOffset
=
(
metric
.
GetAscent
()
+
(
metric
.
GetLineHeight
()
/
20
));
...
...
starmath/qa/cppunit/test_nodetotextvisitors.cxx
Dosyayı görüntüle @
d08ef4d2
...
...
@@ -20,14 +20,14 @@
namespace
CppUnit
{
template
<>
struct
assertion_traits
<
String
>
struct
assertion_traits
<
OU
String
>
{
static
bool
equal
(
const
String
&
x
,
const
String
&
y
)
static
bool
equal
(
const
OUString
&
x
,
const
OU
String
&
y
)
{
return
x
==
y
;
}
static
std
::
string
toString
(
const
String
&
x
)
static
std
::
string
toString
(
const
OU
String
&
x
)
{
OStringStream
ost
;
ost
<<
OUStringToOString
(
x
,
RTL_TEXTENCODING_UTF8
).
getStr
();
...
...
starmath/source/cfgitem.cxx
Dosyayı görüntüle @
d08ef4d2
...
...
@@ -819,7 +819,7 @@ void SmMathConfig::StripFontFormatList( const std::vector< SmSym > &rSymbols )
SmFontFormatList
&
rFntFmtList
=
GetFontFormatList
();
size_t
nCnt
=
rFntFmtList
.
GetCount
();
SmFontFormat
*
pTmpFormat
=
new
SmFontFormat
[
nCnt
];
String
*
pId
=
new
String
[
nCnt
];
OUString
*
pId
=
new
OUString
[
nCnt
];
size_t
k
;
for
(
k
=
0
;
k
<
nCnt
;
++
k
)
{
...
...
sw/qa/core/macros-test.cxx
Dosyayı görüntüle @
d08ef4d2
...
...
@@ -135,7 +135,7 @@ void SwMacrosTest::testVba()
sMsg
.
append
(
aFileName
);
CPPUNIT_ASSERT_MESSAGE
(
OUStringToOString
(
sMsg
.
makeStringAndClear
(),
RTL_TEXTENCODING_UTF8
).
getStr
(),
xComponent
.
is
()
);
String
sUrl
=
testInfo
[
i
].
sMacroUrl
;
OU
String
sUrl
=
testInfo
[
i
].
sMacroUrl
;
Any
aRet
;
Sequence
<
sal_Int16
>
aOutParamIndex
;
Sequence
<
Any
>
aOutParam
;
...
...
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