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
f473167a
Kaydet (Commit)
f473167a
authored
Şub 11, 2015
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use range-for loop
Change-Id: I1a4c031cb1d65dbdb4f9290997eb65e7738df1d3
üst
bdfe8a26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
docfly.cxx
sw/source/core/doc/docfly.cxx
+2
-3
No files found.
sw/source/core/doc/docfly.cxx
Dosyayı görüntüle @
f473167a
...
...
@@ -970,10 +970,9 @@ int SwDoc::Chainable( const SwFrmFmt &rSource, const SwFrmFmt &rDest )
return
SW_CHAIN_NOT_EMPTY
;
}
sal_uInt16
nArrLen
=
GetSpzFrmFmts
()
->
size
();
for
(
sal_uInt16
n
=
0
;
n
<
nArrLen
;
++
n
)
for
(
auto
pSpzFrmFm
:
*
GetSpzFrmFmts
()
)
{
const
SwFmtAnchor
&
rAnchor
=
(
*
GetSpzFrmFmts
())[
n
]
->
GetAnchor
();
const
SwFmtAnchor
&
rAnchor
=
pSpzFrmFm
->
GetAnchor
();
sal_uLong
nTstSttNd
;
// #i20622# - to-frame anchored objects are allowed.
if
(
((
rAnchor
.
GetAnchorId
()
==
FLY_AT_PARA
)
||
...
...
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