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
6269c009
Kaydet (Commit)
6269c009
authored
Nis 17, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix pointer casting
Change-Id: I813168cbaa99d421886fc27be34efdfd7d97e0d4
üst
b4be3f15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ww8par2.cxx
sw/source/filter/ww8/ww8par2.cxx
+3
-1
No files found.
sw/source/filter/ww8/ww8par2.cxx
Dosyayı görüntüle @
6269c009
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include <boost/noncopyable.hpp>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/static_assert.hpp>
#include <comphelper/string.hxx>
#include <comphelper/string.hxx>
#include <tools/solar.h>
#include <tools/solar.h>
#include <vcl/vclenum.hxx>
#include <vcl/vclenum.hxx>
...
@@ -1243,8 +1244,9 @@ void WW8TabBandDesc::ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* pPar
...
@@ -1243,8 +1244,9 @@ void WW8TabBandDesc::ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* pPar
}
}
else
if
(
nBrcVer
==
8
)
else
if
(
nBrcVer
==
8
)
{
{
BOOST_STATIC_ASSERT
(
sizeof
(
WW8_BRC
)
==
4
);
for
(
int
i
=
0
;
i
<
6
;
++
i
)
for
(
int
i
=
0
;
i
<
6
;
++
i
)
aDefBrcs
[
i
]
=
((
WW8_BRC
*
)
&
pParams
)[
i
];
aDefBrcs
[
i
]
=
reinterpret_cast
<
WW8_BRC
const
*>
(
pParams
)[
i
];
}
}
else
else
memcpy
(
aDefBrcs
,
pParams
,
sizeof
(
aDefBrcs
)
);
memcpy
(
aDefBrcs
,
pParams
,
sizeof
(
aDefBrcs
)
);
...
...
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