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
8948b137
Kaydet (Commit)
8948b137
authored
Ock 09, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lame_OUString_valueOf_sal_Int32_casts += 6;
üst
004c7233
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
unoatxt.cxx
sw/source/ui/uno/unoatxt.cxx
+2
-2
attrdesc.cxx
sw/source/ui/utlui/attrdesc.cxx
+5
-5
No files found.
sw/source/ui/uno/unoatxt.cxx
Dosyayı görüntüle @
8948b137
...
...
@@ -194,7 +194,7 @@ uno::Reference< text::XAutoTextGroup > SwXAutoTextContainer::insertNewByName(
if
(
STRING_NOTFOUND
==
sGroup
.
Search
(
GLOS_DELIM
))
{
sGroup
+=
GLOS_DELIM
;
sGroup
+=
OUString
::
valueOf
(
0
);
sGroup
+=
OUString
::
valueOf
(
sal_Int32
(
0
)
);
}
pGlossaries
->
NewGroupDoc
(
sGroup
,
sGroup
.
GetToken
(
0
,
GLOS_DELIM
));
...
...
@@ -494,7 +494,7 @@ void SwXAutoTextGroup::setName(const OUString& rName) throw( uno::RuntimeExcepti
if
(
STRING_NOTFOUND
==
sNewGroup
.
Search
(
GLOS_DELIM
))
{
sNewGroup
+=
GLOS_DELIM
;
sNewGroup
+=
OUString
::
valueOf
(
0
);
sNewGroup
+=
OUString
::
valueOf
(
sal_Int32
(
0
)
);
}
//the name must be saved, the group may be invalidated while in RenameGroupDoc()
...
...
sw/source/ui/utlui/attrdesc.cxx
Dosyayı görüntüle @
8948b137
...
...
@@ -1095,7 +1095,7 @@ SfxItemPresentation SwRotationGrf::GetPresentation(
rText
=
SW_RESSTR
(
STR_ROTATION
);
else
if
(
rText
.
Len
()
)
rText
.
Erase
();
(
rText
+=
OUString
::
valueOf
(
GetValue
(
)
))
+=
'\xB0'
;
(
rText
+=
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
GetValue
()
)
))
+=
'\xB0'
;
break
;
default
:
...
...
@@ -1118,7 +1118,7 @@ SfxItemPresentation SwLuminanceGrf::GetPresentation(
rText
=
SW_RESSTR
(
STR_LUMINANCE
);
else
if
(
rText
.
Len
()
)
rText
.
Erase
();
(
rText
+=
OUString
::
valueOf
(
GetValue
(
)
))
+=
'%'
;
(
rText
+=
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
GetValue
()
)
))
+=
'%'
;
break
;
default
:
...
...
@@ -1141,7 +1141,7 @@ SfxItemPresentation SwContrastGrf::GetPresentation(
rText
=
SW_RESSTR
(
STR_CONTRAST
);
else
if
(
rText
.
Len
()
)
rText
.
Erase
();
(
rText
+=
OUString
::
valueOf
(
GetValue
(
)
))
+=
'%'
;
(
rText
+=
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
GetValue
()
)
))
+=
'%'
;
break
;
default
:
...
...
@@ -1177,7 +1177,7 @@ SfxItemPresentation SwChannelGrf::GetPresentation(
}
else
if
(
rText
.
Len
()
)
rText
.
Erase
();
(
rText
+=
OUString
::
valueOf
(
GetValue
(
)
))
+=
'%'
;
(
rText
+=
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
GetValue
()
)
))
+=
'%'
;
break
;
default
:
...
...
@@ -1245,7 +1245,7 @@ SfxItemPresentation SwTransparencyGrf::GetPresentation(
rText
=
SW_RESSTR
(
STR_TRANSPARENCY
);
else
if
(
rText
.
Len
()
)
rText
.
Erase
();
(
rText
+=
OUString
::
valueOf
(
GetValue
(
)
))
+=
'%'
;
(
rText
+=
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
GetValue
()
)
))
+=
'%'
;
break
;
default
:
...
...
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