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
4f5b0343
Kaydet (Commit)
4f5b0343
authored
Nis 01, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I7657e83fd1494a199528482d7000940cfa2f60d4
üst
3f80ac47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
SolverComponent.cxx
sccomp/source/solver/SolverComponent.cxx
+5
-5
No files found.
sccomp/source/solver/SolverComponent.cxx
Dosyayı görüntüle @
4f5b0343
...
...
@@ -106,11 +106,11 @@ SolverComponent::SolverComponent() :
mfResultValue
(
0.0
)
{
// for XPropertySet implementation:
registerProperty
(
STR_NONNEGATIVE
,
PROP_NONNEGATIVE
,
0
,
&
mbNonNegative
,
getCppuType
(
&
mbNonNegative
)
);
registerProperty
(
STR_INTEGER
,
PROP_INTEGER
,
0
,
&
mbInteger
,
getCppuType
(
&
mbInteger
)
);
registerProperty
(
STR_TIMEOUT
,
PROP_TIMEOUT
,
0
,
&
mnTimeout
,
getCppuType
(
&
mnTimeout
)
);
registerProperty
(
STR_EPSILONLEVEL
,
PROP_EPSILONLEVEL
,
0
,
&
mnEpsilonLevel
,
getCppuType
(
&
mnEpsilonLevel
)
);
registerProperty
(
STR_LIMITBBDEPTH
,
PROP_LIMITBBDEPTH
,
0
,
&
mbLimitBBDepth
,
getCppuType
(
&
mbLimitBBDepth
)
);
registerProperty
(
STR_NONNEGATIVE
,
PROP_NONNEGATIVE
,
0
,
&
mbNonNegative
,
cppu
::
UnoType
<
decltype
(
mbNonNegative
)
>::
get
(
)
);
registerProperty
(
STR_INTEGER
,
PROP_INTEGER
,
0
,
&
mbInteger
,
cppu
::
UnoType
<
decltype
(
mbInteger
)
>::
get
(
)
);
registerProperty
(
STR_TIMEOUT
,
PROP_TIMEOUT
,
0
,
&
mnTimeout
,
cppu
::
UnoType
<
decltype
(
mnTimeout
)
>::
get
(
)
);
registerProperty
(
STR_EPSILONLEVEL
,
PROP_EPSILONLEVEL
,
0
,
&
mnEpsilonLevel
,
cppu
::
UnoType
<
decltype
(
mnEpsilonLevel
)
>::
get
(
)
);
registerProperty
(
STR_LIMITBBDEPTH
,
PROP_LIMITBBDEPTH
,
0
,
&
mbLimitBBDepth
,
cppu
::
UnoType
<
decltype
(
mbLimitBBDepth
)
>::
get
(
)
);
}
SolverComponent
::~
SolverComponent
()
...
...
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