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
9f4b7c50
Kaydet (Commit)
9f4b7c50
authored
Haz 01, 2015
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use more proper integer types and range-based for loops
Change-Id: Ifb7edfa11855afff373e638d583efd6ce55e93d3
üst
abfb418c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
13 deletions
+8
-13
htmlgrin.cxx
sw/source/filter/html/htmlgrin.cxx
+8
-13
No files found.
sw/source/filter/html/htmlgrin.cxx
Dosyayı görüntüle @
9f4b7c50
...
...
@@ -94,23 +94,19 @@ HTMLOptionEnum aHTMLImgVAlignTable[] =
ImageMap
*
SwHTMLParser
::
FindImageMap
(
const
OUString
&
rName
)
const
{
ImageMap
*
pMap
=
0
;
OSL_ENSURE
(
rName
[
0
]
!=
'#'
,
"FindImageName: Name beginnt mit #!"
);
if
(
pImageMaps
)
{
for
(
sal_uInt16
i
=
0
;
i
<
pImageMaps
->
size
();
i
++
)
for
(
auto
&
rIMap
:
*
pImageMaps
)
{
ImageMap
*
pIMap
=
&
(
*
pImageMaps
)[
i
];
if
(
rName
.
equalsIgnoreAsciiCase
(
pIMap
->
GetName
()
)
)
if
(
rName
.
equalsIgnoreAsciiCase
(
rIMap
.
GetName
()
)
)
{
pMap
=
pIMap
;
break
;
return
&
rIMap
;
}
}
}
return
pMap
;
return
nullptr
;
}
void
SwHTMLParser
::
ConnectImageMaps
()
...
...
@@ -779,7 +775,7 @@ IMAGE_SETEVENT:
SFX_EVENT_MOUSEOUT_OBJECT
,
0
};
for
(
sal_uInt16
n
=
0
;
aEvents
[
n
];
++
n
)
for
(
int
n
=
0
;
aEvents
[
n
];
++
n
)
{
const
SvxMacro
*
pMacro
=
rINetFormat
.
GetMacro
(
aEvents
[
n
]
);
if
(
0
!=
pMacro
)
...
...
@@ -991,7 +987,7 @@ void SwHTMLParser::InsertBodyOptions()
static
const
sal_uInt16
aWhichIds
[
3
]
=
{
RES_CHRATR_FONTSIZE
,
RES_CHRATR_CJK_FONTSIZE
,
RES_CHRATR_CTL_FONTSIZE
};
for
(
s
al_uInt16
i
=
0
;
i
<
3
;
i
++
)
for
(
s
ize_t
i
=
0
;
i
<
SAL_N_ELEMENTS
(
aWhichIds
);
++
i
)
{
if
(
SfxItemState
::
SET
==
aItemSet
.
GetItemState
(
aWhichIds
[
i
],
false
,
&
pItem
)
&&
...
...
@@ -1302,7 +1298,7 @@ bool SwHTMLParser::HasCurrentParaBookmarks( bool bIgnoreStack ) const
// to check the last bookmark
if
(
!
bIgnoreStack
)
{
for
(
sal_uInt16
i
=
aSetAttrTab
.
size
();
i
;
)
for
(
auto
i
=
aSetAttrTab
.
size
();
i
;
)
{
_HTMLAttr
*
pAttr
=
aSetAttrTab
[
--
i
];
if
(
RES_FLTR_BOOKMARK
==
pAttr
->
pItem
->
Which
()
)
...
...
@@ -1354,9 +1350,8 @@ void SwHTMLParser::StripTrailingPara()
const
SwFrameFormats
&
rFrameFormatTable
=
*
pDoc
->
GetSpzFrameFormats
();
for
(
sal_uInt16
i
=
0
;
i
<
rFrameFormatTable
.
size
();
i
++
)
for
(
auto
pFormat
:
rFrameFormatTable
)
{
SwFrameFormat
const
*
const
pFormat
=
rFrameFormatTable
[
i
];
SwFormatAnchor
const
*
const
pAnchor
=
&
pFormat
->
GetAnchor
();
SwPosition
const
*
const
pAPos
=
pAnchor
->
GetContentAnchor
();
if
(
pAPos
&&
...
...
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