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
cffc2471
Kaydet (Commit)
cffc2471
authored
May 23, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Silence C4334: '<<': result of 32-bit shift implicitly converted to 64 bits
Change-Id: I40173fe1bb22b8444b1a85f8bdecc07a9f9c354f
üst
df43ab2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gifread.cxx
vcl/source/filter/igif/gifread.cxx
+2
-2
No files found.
vcl/source/filter/igif/gifread.cxx
Dosyayı görüntüle @
cffc2471
...
@@ -248,7 +248,7 @@ bool GIFReader::ReadGlobalHeader()
...
@@ -248,7 +248,7 @@ bool GIFReader::ReadGlobalHeader()
bGlobalPalette
=
(
nRF
&
0x80
);
bGlobalPalette
=
(
nRF
&
0x80
);
if
(
bGlobalPalette
)
if
(
bGlobalPalette
)
ReadPaletteEntries
(
&
aGPalette
,
1UL
<<
(
(
nRF
&
7
)
+
1
)
);
ReadPaletteEntries
(
&
aGPalette
,
sal_uLong
(
1
)
<<
(
(
nRF
&
7
)
+
1
)
);
else
else
nBackgroundColor
=
0
;
nBackgroundColor
=
0
;
...
@@ -459,7 +459,7 @@ bool GIFReader::ReadLocalHeader()
...
@@ -459,7 +459,7 @@ bool GIFReader::ReadLocalHeader()
if
(
nFlags
&
0x80
)
if
(
nFlags
&
0x80
)
{
{
pPal
=
&
aLPalette
;
pPal
=
&
aLPalette
;
ReadPaletteEntries
(
pPal
,
1UL
<<
(
(
nFlags
&
7
)
+
1
)
);
ReadPaletteEntries
(
pPal
,
sal_uLong
(
1
)
<<
(
(
nFlags
&
7
)
+
1
)
);
}
}
else
else
pPal
=
&
aGPalette
;
pPal
=
&
aGPalette
;
...
...
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