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
91e81cd4
Kaydet (Commit)
91e81cd4
authored
Eki 14, 2012
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
private field 'eType' is not used [-Werror,-Wunused-private-field]
Change-Id: I0c21a0af88eda56a9ccfeeb9691617c67340b3d2
üst
891b770e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
poly.hxx
tools/inc/tools/poly.hxx
+2
-2
No files found.
tools/inc/tools/poly.hxx
Dosyayı görüntüle @
91e81cd4
...
...
@@ -66,8 +66,8 @@ public:
PolyOptimizeData
(
sal_uIntPtr
nAbsolut
)
:
eType
(
DATA_ABSOLUT
),
mnAbsolut
(
nAbsolut
)
{}
PolyOptimizeData
(
sal_uInt16
nPercent
)
:
eType
(
DATA_PERCENT
),
mnPercent
(
nPercent
)
{}
sal_uIntPtr
GetAbsValue
()
const
{
DBG_ASSERT
(
eType
==
DATA_ABSOLUT
,
"Wrong data type"
);
return
mnAbsolut
;
}
sal_uInt16
GetPercentValue
()
const
{
DBG_ASSERT
(
eType
==
DATA_PERCENT
,
"Wrong data type"
);
return
mnPercent
;
}
sal_uIntPtr
GetAbsValue
()
const
{
(
void
)
eType
;
DBG_ASSERT
(
eType
==
DATA_ABSOLUT
,
"Wrong data type"
);
return
mnAbsolut
;
}
sal_uInt16
GetPercentValue
()
const
{
(
void
)
eType
;
DBG_ASSERT
(
eType
==
DATA_PERCENT
,
"Wrong data type"
);
return
mnPercent
;
}
};
class
SvStream
;
...
...
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