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
fe502c89
Kaydet (Commit)
fe502c89
authored
Nis 24, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
String::CreateFromInt32->rtl::OUString::valueOf
üst
c797a11a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
drawdoc4.cxx
sd/source/core/drawdoc4.cxx
+1
-1
CustomAnimationCreateDialog.cxx
sd/source/ui/animations/CustomAnimationCreateDialog.cxx
+2
-2
CustomAnimationDialog.cxx
sd/source/ui/animations/CustomAnimationDialog.cxx
+2
-2
animobjs.cxx
sd/source/ui/dlg/animobjs.cxx
+1
-1
SlsPageObjectPainter.cxx
sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx
+1
-1
unolayer.cxx
sd/source/ui/unoidl/unolayer.cxx
+3
-3
No files found.
sd/source/core/drawdoc4.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -1137,7 +1137,7 @@ String SdDrawDocument::CreatePageNumValue(sal_uInt16 nNum) const
aPageNumValue
+=
sal_Unicode
(
' '
);
break
;
default
:
aPageNumValue
+=
String
::
CreateFromInt32
(
(
sal_Int32
)
nNum
);
aPageNumValue
+=
rtl
::
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
nNum
)
);
}
return
(
aPageNumValue
);
...
...
sd/source/ui/animations/CustomAnimationCreateDialog.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -664,7 +664,7 @@ Window * lcl_GetTopmostParent( Window * pWindow )
void
CustomAnimationCreateDialog
::
setPosition
()
{
SvtViewOptions
aDlgOpt
(
E_TABDIALOG
,
String
::
CreateFromInt32
(
DLG_CUSTOMANIMATION_CREATE
)
);
E_TABDIALOG
,
rtl
::
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
DLG_CUSTOMANIMATION_CREATE
))
);
if
(
aDlgOpt
.
Exists
()
)
{
SetWindowState
(
rtl
::
OUStringToOString
(
aDlgOpt
.
GetWindowState
(),
...
...
@@ -692,7 +692,7 @@ void CustomAnimationCreateDialog::storePosition()
{
// save settings (screen position and current page)
SvtViewOptions
aDlgOpt
(
E_TABDIALOG
,
String
::
CreateFromInt32
(
DLG_CUSTOMANIMATION_CREATE
)
);
E_TABDIALOG
,
rtl
::
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
DLG_CUSTOMANIMATION_CREATE
))
);
aDlgOpt
.
SetWindowState
(
OStringToOUString
(
GetWindowState
(
WINDOWSTATE_MASK_POS
),
RTL_TEXTENCODING_ASCII_US
));
}
...
...
sd/source/ui/animations/CustomAnimationDialog.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -574,9 +574,9 @@ TransparencyPropertyBox::TransparencyPropertyBox( sal_Int32 nControlType, Window
mpMetric
->
SetMax
(
100
);
mpMenu
=
new
PopupMenu
();
for
(
sal_
uInt16
i
=
25
;
i
<
101
;
i
+=
25
)
for
(
sal_
Int32
i
=
25
;
i
<
101
;
i
+=
25
)
{
String
aStr
(
String
::
CreateFromInt32
(
i
)
);
String
aStr
(
rtl
::
OUString
::
valueOf
(
i
)
);
aStr
+=
sal_Unicode
(
'%'
);
mpMenu
->
InsertItem
(
i
,
aStr
);
}
...
...
sd/source/ui/dlg/animobjs.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -611,7 +611,7 @@ void AnimationWindow::UpdateControl( sal_uLong nListPos, sal_Bool bDisableCtrls
aCtlDisplay
.
Invalidate
();
aCtlDisplay
.
Update
();
aFiCount
.
SetText
(
UniString
::
CreateFromInt32
(
aBmpExList
.
Count
()
)
);
aFiCount
.
SetText
(
rtl
::
OUString
::
valueOf
(
static_cast
<
sal_Int32
>
(
aBmpExList
.
Count
()))
);
if
(
pBitmapEx
&&
!
bMovie
)
{
...
...
sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -331,7 +331,7 @@ void PageObjectPainter::PaintPageNumber (
// Paint the page number.
OSL_ASSERT
(
rpDescriptor
->
GetPage
()
!=
NULL
);
const
sal_Int32
nPageNumber
((
rpDescriptor
->
GetPage
()
->
GetPageNum
()
-
1
)
/
2
+
1
);
const
String
sPageNumber
(
String
::
CreateFromInt32
(
nPageNumber
));
const
rtl
::
OUString
sPageNumber
(
rtl
::
OUString
::
valueOf
(
nPageNumber
));
rDevice
.
SetFont
(
*
mpPageNumberFont
);
rDevice
.
SetTextColor
(
aPageNumberColor
);
rDevice
.
DrawText
(
aBox
,
sPageNumber
,
TEXT_DRAW_RIGHT
|
TEXT_DRAW_VCENTER
);
...
...
sd/source/ui/unoidl/unolayer.cxx
Dosyayı görüntüle @
fe502c89
...
...
@@ -534,15 +534,15 @@ uno::Reference< drawing::XLayer > SAL_CALL SdLayerManager::insertNewByIndex( sal
{
SdrLayerAdmin
&
rLayerAdmin
=
mpModel
->
mpDoc
->
GetLayerAdmin
();
sal_uInt16
nLayerCnt
=
rLayerAdmin
.
GetLayerCount
();
sal_
uInt16
nLayer
=
nLayerCnt
-
2
+
1
;
sal_
Int32
nLayer
=
nLayerCnt
-
2
+
1
;
String
aLayerName
;
// Ueberpruefung auf schon vorhandene Namen
while
(
aLayerName
.
Len
()
==
0
||
rLayerAdmin
.
GetLayer
(
aLayerName
,
sal_False
)
)
{
aLayerName
=
String
(
SdResId
(
STR_LAYER
));
aLayerName
+=
String
::
CreateFromInt32
(
(
sal_Int32
)
nLayer
);
nLayer
++
;
aLayerName
+=
rtl
::
OUString
::
valueOf
(
nLayer
);
++
nLayer
;
}
SdrLayerAdmin
&
rLA
=
mpModel
->
mpDoc
->
GetLayerAdmin
();
...
...
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