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
a41c9866
Kaydet (Commit)
a41c9866
authored
Eyl 04, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert svx/source/mnucrtls/*.cxx from String to OUString
Change-Id: Ica33c8217cd6b57e6d1d16b01061a6e6422b46c6
üst
71622632
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
clipboardctl.cxx
svx/source/mnuctrls/clipboardctl.cxx
+2
-2
fntctl.cxx
svx/source/mnuctrls/fntctl.cxx
+1
-1
textproperties.cxx
svx/source/sdr/properties/textproperties.cxx
+5
-5
No files found.
svx/source/mnuctrls/clipboardctl.cxx
Dosyayı görüntüle @
a41c9866
...
...
@@ -75,8 +75,8 @@ SfxPopupWindow* SvxClipBoardControl::CreatePopupWindow()
for
(
sal_uInt16
i
=
0
;
i
<
nCount
;
++
i
)
{
sal_uIntPtr
nFmtID
=
pFmtItem
->
GetClipbrdFormatId
(
i
);
String
aFmtStr
(
pFmtItem
->
GetClipbrdFormatName
(
i
)
);
if
(
!
aFmtStr
.
Len
())
OU
String
aFmtStr
(
pFmtItem
->
GetClipbrdFormatName
(
i
)
);
if
(
aFmtStr
.
isEmpty
())
aFmtStr
=
SvPasteObjectHelper
::
GetSotFormatUIName
(
nFmtID
);
pPopup
->
InsertItem
(
(
sal_uInt16
)
nFmtID
,
aFmtStr
);
}
...
...
svx/source/mnuctrls/fntctl.cxx
Dosyayı görüntüle @
a41c9866
...
...
@@ -102,7 +102,7 @@ void SvxFontMenuControl::StateChanged(
if
(
!
pMenu
->
GetItemCount
()
)
FillMenu
();
const
SvxFontItem
*
pFontItem
=
PTR_CAST
(
SvxFontItem
,
pState
);
String
aFont
;
OU
String
aFont
;
if
(
pFontItem
)
aFont
=
pFontItem
->
GetFamilyName
();
...
...
svx/source/sdr/properties/textproperties.cxx
Dosyayı görüntüle @
a41c9866
...
...
@@ -276,8 +276,8 @@ namespace sdr
{
if
((
OBJ_OUTLINETEXT
==
rObj
.
GetTextKind
())
&&
(
SdrInventor
==
rObj
.
GetObjInventor
()))
{
String
aNewStyleSheetName
(
GetStyleSheet
()
->
GetName
());
aNewStyleSheetName
.
Erase
(
aNewStyleSheetName
.
Len
()
-
1
,
1
);
OU
String
aNewStyleSheetName
(
GetStyleSheet
()
->
GetName
());
aNewStyleSheetName
=
aNewStyleSheetName
.
copy
(
0
,
aNewStyleSheetName
.
getLength
()
-
1
);
sal_Int16
nDepth
=
rOutliner
.
GetDepth
(
nPara
);
aNewStyleSheetName
+=
OUString
::
number
(
nDepth
<=
0
?
1
:
nDepth
+
1
);
...
...
@@ -600,11 +600,11 @@ namespace sdr
if
(
pExtendedHint
&&
SFX_STYLESHEET_MODIFIED
==
pExtendedHint
->
GetHint
())
{
String
aOldName
(
pExtendedHint
->
GetOldName
());
String
aNewName
(
pExtendedHint
->
GetStyleSheet
()
->
GetName
());
OU
String
aOldName
(
pExtendedHint
->
GetOldName
());
OU
String
aNewName
(
pExtendedHint
->
GetStyleSheet
()
->
GetName
());
SfxStyleFamily
eFamily
=
pExtendedHint
->
GetStyleSheet
()
->
GetFamily
();
if
(
!
aOldName
.
Equals
(
aNewName
)
)
if
(
aOldName
!=
aNewName
)
{
sal_Int32
nText
=
rTextProvider
.
getTextCount
();
while
(
--
nText
>
0
)
...
...
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