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
ca0d0f65
Kaydet (Commit)
ca0d0f65
authored
Eki 19, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix members of SwXStyle
Change-Id: I0f80f52c31c68521b89faf123e45ce458883d76b
üst
6aa90a44
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
unostyle.hxx
sw/inc/unostyle.hxx
+14
-14
unostyle.cxx
sw/source/core/unocore/unostyle.cxx
+0
-0
No files found.
sw/inc/unostyle.hxx
Dosyayı görüntüle @
ca0d0f65
...
@@ -168,23 +168,23 @@ class SwXStyle : public cppu::WeakImplHelper
...
@@ -168,23 +168,23 @@ class SwXStyle : public cppu::WeakImplHelper
friend
class
SwXStyleFamily
;
friend
class
SwXStyleFamily
;
SwDoc
*
m_pDoc
;
SwDoc
*
m_pDoc
;
OUString
m_sStyleName
;
OUString
m_sStyleName
;
SfxStyleSheetBasePool
*
pBasePool
;
SfxStyleSheetBasePool
*
m_
pBasePool
;
SfxStyleFamily
eFamily
;
// for Notify
SfxStyleFamily
m_
eFamily
;
// for Notify
bool
bIsDescriptor
:
1
;
bool
m_
bIsDescriptor
:
1
;
bool
bIsConditional
:
1
;
bool
m_
bIsConditional
:
1
;
OUString
m_sParentStyleName
;
OUString
m_sParentStyleName
;
SwStyleProperties_Impl
*
pProp
Impl
;
SwStyleProperties_Impl
*
m_pProperties
Impl
;
void
ApplyDescriptorProperties
();
void
ApplyDescriptorProperties
();
protected
:
protected
:
void
Invalidate
();
void
Invalidate
();
const
SfxStyleSheetBasePool
*
GetBasePool
()
const
{
return
pBasePool
;}
const
SfxStyleSheetBasePool
*
GetBasePool
()
const
{
return
m_
pBasePool
;}
SfxStyleSheetBasePool
*
GetBasePool
()
{
return
pBasePool
;}
SfxStyleSheetBasePool
*
GetBasePool
()
{
return
m_
pBasePool
;}
void
SetStyleName
(
const
OUString
&
rSet
){
m_sStyleName
=
rSet
;}
void
SetStyleName
(
const
OUString
&
rSet
){
m_sStyleName
=
rSet
;}
SwStyleProperties_Impl
*
GetPropImpl
(){
return
pProp
Impl
;}
SwStyleProperties_Impl
*
GetPropImpl
(){
return
m_pProperties
Impl
;}
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
mxStyleData
;
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
mxStyleData
;
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>
mxStyleFamily
;
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>
mxStyleFamily
;
...
@@ -259,16 +259,16 @@ public:
...
@@ -259,16 +259,16 @@ public:
virtual
void
Notify
(
SfxBroadcaster
&
rBC
,
const
SfxHint
&
rHint
)
override
;
virtual
void
Notify
(
SfxBroadcaster
&
rBC
,
const
SfxHint
&
rHint
)
override
;
OUString
GetStyleName
()
const
{
return
m_sStyleName
;}
OUString
GetStyleName
()
const
{
return
m_sStyleName
;}
SfxStyleFamily
GetFamily
()
const
{
return
eFamily
;}
SfxStyleFamily
GetFamily
()
const
{
return
m_
eFamily
;}
bool
IsDescriptor
()
const
{
return
bIsDescriptor
;}
bool
IsDescriptor
()
const
{
return
m_
bIsDescriptor
;}
bool
IsConditional
()
const
{
return
bIsConditional
;}
bool
IsConditional
()
const
{
return
m_
bIsConditional
;}
OUString
GetParentStyleName
()
const
{
return
m_sParentStyleName
;}
OUString
GetParentStyleName
()
const
{
return
m_sParentStyleName
;}
void
SetDoc
(
SwDoc
*
pDc
,
SfxStyleSheetBasePool
*
pPool
)
void
SetDoc
(
SwDoc
*
pDc
,
SfxStyleSheetBasePool
*
pPool
)
{
{
bIsDescriptor
=
false
;
m_pDoc
=
pDc
;
m_
bIsDescriptor
=
false
;
m_pDoc
=
pDc
;
pBasePool
=
pPool
;
m_
pBasePool
=
pPool
;
StartListening
(
*
pBasePool
);
StartListening
(
*
m_
pBasePool
);
}
}
SwDoc
*
GetDoc
()
const
{
return
m_pDoc
;
}
SwDoc
*
GetDoc
()
const
{
return
m_pDoc
;
}
};
};
...
...
sw/source/core/unocore/unostyle.cxx
Dosyayı görüntüle @
ca0d0f65
This diff is collapsed.
Click to expand it.
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