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
fad9d93e
Kaydet (Commit)
fad9d93e
authored
Eki 05, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
CID#708574 uninitialized members
Change-Id: I9b004005ac1136861759a33cee08cd945ac7d993
üst
51f6eaec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
impoct.hxx
vcl/inc/impoct.hxx
+16
-8
No files found.
vcl/inc/impoct.hxx
Dosyayı görüntüle @
fad9d93e
...
...
@@ -28,17 +28,25 @@
class
ImpErrorQuad
{
long
nRed
;
long
nGreen
;
long
nBlue
;
long
nRed
;
long
nGreen
;
long
nBlue
;
public
:
inline
ImpErrorQuad
()
{}
inline
ImpErrorQuad
(
const
BitmapColor
&
rColor
)
:
nRed
(
(
long
)
rColor
.
GetRed
()
<<
5L
),
nGreen
(
(
long
)
rColor
.
GetGreen
()
<<
5L
),
nBlue
(
(
long
)
rColor
.
GetBlue
()
<<
5L
)
{}
ImpErrorQuad
()
:
nRed
(
0
)
,
nGreen
(
0
)
,
nBlue
(
0
)
{
}
ImpErrorQuad
(
const
BitmapColor
&
rColor
)
:
nRed
(
(
long
)
rColor
.
GetRed
()
<<
5L
)
,
nGreen
(
(
long
)
rColor
.
GetGreen
()
<<
5L
)
,
nBlue
(
(
long
)
rColor
.
GetBlue
()
<<
5L
)
{
}
inline
void
operator
=
(
const
BitmapColor
&
rColor
);
inline
ImpErrorQuad
&
operator
-=
(
const
BitmapColor
&
rColor
);
...
...
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