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
0728cc90
Kaydet (Commit)
0728cc90
authored
Eyl 03, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/svx/pageitem.hxx from String to OUString
Change-Id: I441c6b46ace2ad1b23357bea83501a67b63e8637
üst
d4a5d638
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
pageitem.hxx
include/svx/pageitem.hxx
+4
-4
pageitem.cxx
svx/source/items/pageitem.cxx
+2
-2
No files found.
include/svx/pageitem.hxx
Dosyayı görüntüle @
0728cc90
...
@@ -62,8 +62,8 @@ portait or landscape, layout)
...
@@ -62,8 +62,8 @@ portait or landscape, layout)
class
SVX_DLLPUBLIC
SvxPageItem
:
public
SfxPoolItem
class
SVX_DLLPUBLIC
SvxPageItem
:
public
SfxPoolItem
{
{
private
:
private
:
String
aDescName
;
// name of the template
OUString
aDescName
;
// name of the template
SvxNumType
eNumType
;
// enumeration
SvxNumType
eNumType
;
// enumeration
sal_Bool
bLandscape
;
// Portrait / Landscape
sal_Bool
bLandscape
;
// Portrait / Landscape
sal_uInt16
eUse
;
// Layout
sal_uInt16
eUse
;
// Layout
...
@@ -98,8 +98,8 @@ public:
...
@@ -98,8 +98,8 @@ public:
void
SetNumType
(
SvxNumType
eNum
)
{
eNumType
=
eNum
;
}
void
SetNumType
(
SvxNumType
eNum
)
{
eNumType
=
eNum
;
}
// name of the descriptor
// name of the descriptor
const
String
&
GetDescName
()
const
{
return
aDescName
;
}
const
OUString
&
GetDescName
()
const
{
return
aDescName
;
}
void
SetDescName
(
const
String
&
rStr
)
{
aDescName
=
rStr
;
}
void
SetDescName
(
const
OU
String
&
rStr
)
{
aDescName
=
rStr
;
}
};
};
...
...
svx/source/items/pageitem.cxx
Dosyayı görüntüle @
0728cc90
...
@@ -113,7 +113,7 @@ SfxItemPresentation SvxPageItem::GetPresentation
...
@@ -113,7 +113,7 @@ SfxItemPresentation SvxPageItem::GetPresentation
return
SFX_ITEM_PRESENTATION_NONE
;
return
SFX_ITEM_PRESENTATION_NONE
;
case
SFX_ITEM_PRESENTATION_NAMELESS
:
case
SFX_ITEM_PRESENTATION_NAMELESS
:
{
{
if
(
aDescName
.
Len
()
)
if
(
!
aDescName
.
isEmpty
()
)
{
{
rText
=
aDescName
+
cpDelimTmp
;
rText
=
aDescName
+
cpDelimTmp
;
}
}
...
@@ -133,7 +133,7 @@ SfxItemPresentation SvxPageItem::GetPresentation
...
@@ -133,7 +133,7 @@ SfxItemPresentation SvxPageItem::GetPresentation
case
SFX_ITEM_PRESENTATION_COMPLETE
:
case
SFX_ITEM_PRESENTATION_COMPLETE
:
{
{
rText
+=
SVX_RESSTR
(
RID_SVXITEMS_PAGE_COMPLETE
);
rText
+=
SVX_RESSTR
(
RID_SVXITEMS_PAGE_COMPLETE
);
if
(
aDescName
.
Len
()
)
if
(
!
aDescName
.
isEmpty
()
)
{
{
rText
+=
aDescName
+
cpDelimTmp
;
rText
+=
aDescName
+
cpDelimTmp
;
}
}
...
...
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