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
ef342691
Kaydet (Commit)
ef342691
authored
Ara 18, 2014
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix SwLayoutFrm members
Change-Id: If961ecfe27c6f478f030bab746278b885482b229
üst
296e8b59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
layfrm.hxx
sw/source/core/inc/layfrm.hxx
+6
-5
ssfrm.cxx
sw/source/core/layout/ssfrm.cxx
+3
-3
No files found.
sw/source/core/inc/layfrm.hxx
Dosyayı görüntüle @
ef342691
...
...
@@ -54,7 +54,7 @@ protected:
virtual
void
MakeAll
()
SAL_OVERRIDE
;
SwFrm
*
m_pLower
;
std
::
vector
<
SwAnchoredObject
*>
a
VertPosOrientFrmsFor
;
std
::
vector
<
SwAnchoredObject
*>
m_
VertPosOrientFrmsFor
;
virtual
SwTwips
ShrinkFrm
(
SwTwips
,
bool
bTst
=
false
,
bool
bInfo
=
false
)
SAL_OVERRIDE
;
virtual
SwTwips
GrowFrm
(
SwTwips
,
bool
bTst
=
false
,
bool
bInfo
=
false
)
SAL_OVERRIDE
;
...
...
@@ -178,14 +178,15 @@ public:
void
SetVertPosOrientFrmFor
(
SwAnchoredObject
*
pObj
)
{
a
VertPosOrientFrmsFor
.
push_back
(
pObj
);
m_
VertPosOrientFrmsFor
.
push_back
(
pObj
);
}
void
ClearVertPosOrientFrmFor
(
SwAnchoredObject
*
pObj
)
{
aVertPosOrientFrmsFor
.
erase
(
std
::
remove
(
aVertPosOrientFrmsFor
.
begin
(),
aVertPosOrientFrmsFor
.
end
(),
pObj
),
aVertPosOrientFrmsFor
.
end
());
m_VertPosOrientFrmsFor
.
erase
(
std
::
remove
(
m_VertPosOrientFrmsFor
.
begin
(),
m_VertPosOrientFrmsFor
.
end
(),
pObj
),
m_VertPosOrientFrmsFor
.
end
());
}
};
...
...
sw/source/core/layout/ssfrm.cxx
Dosyayı görüntüle @
ef342691
...
...
@@ -432,13 +432,13 @@ void SwCntntFrm::RegisterToNode( SwCntntNode& rNode )
void
SwLayoutFrm
::
Destroy
()
{
while
(
!
a
VertPosOrientFrmsFor
.
empty
())
while
(
!
m_
VertPosOrientFrmsFor
.
empty
())
{
SwAnchoredObject
*
pObj
=
*
a
VertPosOrientFrmsFor
.
begin
();
SwAnchoredObject
*
pObj
=
*
m_
VertPosOrientFrmsFor
.
begin
();
pObj
->
ClearVertPosOrientFrm
();
}
assert
(
a
VertPosOrientFrmsFor
.
empty
());
assert
(
m_
VertPosOrientFrmsFor
.
empty
());
SwFrm
*
pFrm
=
m_pLower
;
...
...
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