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
4ccf97ee
Kaydet (Commit)
4ccf97ee
authored
Kas 25, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix C2864: only static const integral data members can be initialized within
Change-Id: I01f66eb78e357780f35cfd1df6722301cc5753b2
üst
a7a79ee9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
vcldemo.cxx
vcl/workben/vcldemo.cxx
+8
-3
No files found.
vcl/workben/vcldemo.cxx
Dosyayı görüntüle @
4ccf97ee
...
...
@@ -74,6 +74,10 @@ class DemoRenderer
};
struct
RegionRenderer
{
public
:
RegionRenderer
()
:
sumTime
(
0
),
countTime
(
0
)
{
}
virtual
~
RegionRenderer
()
{}
virtual
OUString
getName
()
=
0
;
virtual
sal_uInt16
getAccelerator
()
=
0
;
...
...
@@ -85,13 +89,13 @@ class DemoRenderer
virtual sal_uInt16 getAccelerator() SAL_OVERRIDE \
{ return key; }
double
sumTime
=
0
;
int
countTime
=
0
;
double
sumTime
;
int
countTime
;
};
std
::
vector
<
RegionRenderer
*
>
maRenderers
;
sal_Int32
mnSelectedRenderer
;
sal_Int32
iterCount
=
0
;
sal_Int32
iterCount
;
void
InitRenderers
();
...
...
@@ -99,6 +103,7 @@ public:
DemoRenderer
()
:
mnSegmentsX
(
4
)
,
mnSegmentsY
(
3
)
,
mnSelectedRenderer
(
-
1
)
,
iterCount
(
0
)
#if FIXME_BOUNCE_BUTTON
,
mpButton
(
NULL
)
,
mpButtonWin
(
NULL
)
...
...
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