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
74f150fe
Kaydet (Commit)
74f150fe
authored
Nis 28, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Booleans are logged via sal_uInt32 here
Change-Id: I634402fb0739b8d42d43264c57340dd030f86d78
üst
cb150774
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
DomainMapperTableHandler.cxx
writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+7
-7
No files found.
writerfilter/source/dmapper/DomainMapperTableHandler.cxx
Dosyayı görüntüle @
74f150fe
...
...
@@ -219,19 +219,19 @@ void lcl_debug_TableBorder(table::TableBorder & rBorder)
{
dmapper_logger
->
startElement
(
"TableBorder"
);
lcl_debug_BorderLine
(
rBorder
.
TopLine
);
dmapper_logger
->
attribute
(
"IsTopLineValid"
,
rBorder
.
IsTopLineValid
);
dmapper_logger
->
attribute
(
"IsTopLineValid"
,
sal_uInt32
(
rBorder
.
IsTopLineValid
)
);
lcl_debug_BorderLine
(
rBorder
.
BottomLine
);
dmapper_logger
->
attribute
(
"IsBottomLineValid"
,
rBorder
.
IsBottomLineValid
);
dmapper_logger
->
attribute
(
"IsBottomLineValid"
,
sal_uInt32
(
rBorder
.
IsBottomLineValid
)
);
lcl_debug_BorderLine
(
rBorder
.
LeftLine
);
dmapper_logger
->
attribute
(
"IsLeftLineValid"
,
rBorder
.
IsLeftLineValid
);
dmapper_logger
->
attribute
(
"IsLeftLineValid"
,
sal_uInt32
(
rBorder
.
IsLeftLineValid
)
);
lcl_debug_BorderLine
(
rBorder
.
RightLine
);
dmapper_logger
->
attribute
(
"IsRightLineValid"
,
rBorder
.
IsRightLineValid
);
dmapper_logger
->
attribute
(
"IsRightLineValid"
,
sal_uInt32
(
rBorder
.
IsRightLineValid
)
);
lcl_debug_BorderLine
(
rBorder
.
VerticalLine
);
dmapper_logger
->
attribute
(
"IsVerticalLineValid"
,
rBorder
.
IsVerticalLineValid
);
dmapper_logger
->
attribute
(
"IsVerticalLineValid"
,
sal_uInt32
(
rBorder
.
IsVerticalLineValid
)
);
lcl_debug_BorderLine
(
rBorder
.
HorizontalLine
);
dmapper_logger
->
attribute
(
"IsHorizontalLineValid"
,
rBorder
.
IsHorizontalLineValid
);
dmapper_logger
->
attribute
(
"IsHorizontalLineValid"
,
sal_uInt32
(
rBorder
.
IsHorizontalLineValid
)
);
dmapper_logger
->
attribute
(
"Distance"
,
rBorder
.
Distance
);
dmapper_logger
->
attribute
(
"IsDistanceValid"
,
rBorder
.
IsDistanceValid
);
dmapper_logger
->
attribute
(
"IsDistanceValid"
,
sal_uInt32
(
rBorder
.
IsDistanceValid
)
);
dmapper_logger
->
endElement
();
}
#endif
...
...
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