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
6ac930d2
Kaydet (Commit)
6ac930d2
authored
May 10, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: cstyleCast
Change-Id: I0cc54e443793dda9bd11a907cc79b54dab3810ad
üst
399fa0ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
itrpaint.cxx
sw/source/core/text/itrpaint.cxx
+1
-1
porlay.hxx
sw/source/core/text/porlay.hxx
+5
-1
No files found.
sw/source/core/text/itrpaint.cxx
Dosyayı görüntüle @
6ac930d2
...
...
@@ -550,7 +550,7 @@ void SwTxtPainter::CheckSpecialUnderline( const SwLinePortion* pPor,
{
// here starts the algorithm for calculating the underline font
SwScriptInfo
&
rScriptInfo
=
GetInfo
().
GetParaPortion
()
->
GetScriptInfo
();
SwAttrIter
aIter
(
*
(
SwTxtNode
*
)
GetInfo
().
GetTxtFrm
()
->
GetTxtNode
(),
SwAttrIter
aIter
(
*
GetInfo
().
GetTxtFrm
()
->
GetTxtNode
(),
rScriptInfo
);
sal_Int32
nTmpIdx
=
nIndx
;
...
...
sw/source/core/text/porlay.hxx
Dosyayı görüntüle @
6ac930d2
...
...
@@ -378,7 +378,11 @@ inline void SwParaPortion::FormatReset()
}
inline
SwLinePortion
*
SwLineLayout
::
GetFirstPortion
()
const
{
return
(
pPortion
?
pPortion
:
(
SwLinePortion
*
)
this
);
}
{
const
SwLinePortion
*
pRet
=
pPortion
?
pPortion
:
this
;
return
const_cast
<
SwLinePortion
*>
(
pRet
);
}
#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