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
b64c7305
Kaydet (Commit)
b64c7305
authored
Haz 20, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adapt DBG_UTIL code to
1015cd4f
Change-Id: I196f7a6211a3c11d976a95d592af4205476fe81f
üst
104567a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
dbgoutsw.cxx
sw/source/core/doc/dbgoutsw.cxx
+9
-8
No files found.
sw/source/core/doc/dbgoutsw.cxx
Dosyayı görüntüle @
b64c7305
...
...
@@ -72,13 +72,13 @@ String lcl_dbg_out_SvPtrArr(const T & rArr)
{
String
aStr
(
"[ "
,
RTL_TEXTENCODING_ASCII_US
);
for
(
sal_Int16
n
=
0
;
n
<
rArr
.
Count
();
n
++
)
for
(
typename
T
::
const_iterator
i
(
rArr
.
begin
());
i
!=
rArr
.
end
();
++
i
)
{
if
(
n
>
0
)
if
(
i
!=
rArr
.
begin
()
)
aStr
+=
String
(
", "
,
RTL_TEXTENCODING_ASCII_US
);
if
(
rArr
[
n
]
)
aStr
+=
lcl_dbg_out
(
*
rArr
[
n
]
);
if
(
*
i
)
aStr
+=
lcl_dbg_out
(
*
*
i
);
else
aStr
+=
String
(
"(null)"
,
RTL_TEXTENCODING_ASCII_US
);
}
...
...
@@ -473,9 +473,10 @@ const String lcl_AnchoredFrames(const SwNode & rNode)
if
(
pFrmFmts
)
{
bool
bFirst
=
true
;
for
(
sal_uInt16
nI
=
0
;
nI
<
pFrmFmts
->
Count
();
nI
++
)
for
(
SwFrmFmts
::
const_iterator
i
(
pFrmFmts
->
begin
());
i
!=
pFrmFmts
->
end
();
++
i
)
{
const
SwFmtAnchor
&
rAnchor
=
(
*
pFrmFmts
)[
nI
]
->
GetAnchor
();
const
SwFmtAnchor
&
rAnchor
=
(
*
i
)
->
GetAnchor
();
const
SwPosition
*
pPos
=
rAnchor
.
GetCntntAnchor
();
if
(
pPos
&&
&
pPos
->
nNode
.
GetNode
()
==
&
rNode
)
...
...
@@ -483,8 +484,8 @@ const String lcl_AnchoredFrames(const SwNode & rNode)
if
(
!
bFirst
)
aResult
+=
String
(
", "
,
RTL_TEXTENCODING_ASCII_US
);
if
(
(
*
pFrmFmts
)[
nI
]
)
aResult
+=
lcl_dbg_out
(
*
(
*
pFrmFmts
)[
nI
]
);
if
(
*
i
)
aResult
+=
lcl_dbg_out
(
*
*
i
);
bFirst
=
false
;
}
}
...
...
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