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
718ec662
Kaydet (Commit)
718ec662
authored
Nis 04, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
animations: sal_Bool->bool
Change-Id: I77d10e56389042dd3caa8ed4816afe9f3baf5b22
üst
b8757ee8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
animcore.cxx
animations/source/animcore/animcore.cxx
+11
-11
No files found.
animations/source/animcore/animcore.cxx
Dosyayı görüntüle @
718ec662
...
...
@@ -299,7 +299,7 @@ private:
Any
maBegin
,
maDuration
,
maEnd
,
maEndSync
,
maRepeatCount
,
maRepeatDuration
;
sal_Int16
mnFill
,
mnFillDefault
,
mnRestart
,
mnRestartDefault
;
double
mfAcceleration
,
mfDecelerate
;
sal_B
ool
mbAutoReverse
;
b
ool
mbAutoReverse
;
Sequence
<
NamedValue
>
maUserData
;
// parent interface for XChild interface implementation
...
...
@@ -313,13 +313,13 @@ private:
Sequence
<
double
>
maKeyTimes
;
sal_Int16
mnValueType
,
mnSubItem
;
sal_Int16
mnCalcMode
,
mnAdditive
;
sal_B
ool
mbAccumulate
;
b
ool
mbAccumulate
;
Any
maFrom
,
maTo
,
maBy
;
Sequence
<
TimeFilterPair
>
maTimeFilter
;
// attributes for XAnimateColor
sal_Int16
mnColorSpace
;
sal_B
ool
mbDirection
;
b
ool
mbDirection
;
// attributes for XAnimateMotion
Any
maPath
,
maOrigin
;
...
...
@@ -330,7 +330,7 @@ private:
// attributes for XTransitionFilter
sal_Int16
mnTransition
;
sal_Int16
mnSubtype
;
sal_B
ool
mbMode
;
b
ool
mbMode
;
sal_Int32
mnFadeColor
;
// XAudio
...
...
@@ -413,15 +413,15 @@ AnimationNode::AnimationNode( sal_Int16 nNodeType )
mnRestartDefault
(
AnimationRestart
::
INHERIT
),
mfAcceleration
(
0.0
),
mfDecelerate
(
0.0
),
mbAutoReverse
(
sal_F
alse
),
mbAutoReverse
(
f
alse
),
mpParent
(
0
),
mnValueType
(
0
),
mnSubItem
(
0
),
mnCalcMode
(
(
nNodeType
==
AnimationNodeType
::
ANIMATEMOTION
)
?
AnimationCalcMode
::
PACED
:
AnimationCalcMode
::
LINEAR
),
mnAdditive
(
AnimationAdditiveMode
::
REPLACE
),
mbAccumulate
(
sal_F
alse
),
mbAccumulate
(
f
alse
),
mnColorSpace
(
AnimationColorSpace
::
RGB
),
mbDirection
(
sal_T
rue
),
mbDirection
(
t
rue
),
mnTransformType
(
AnimationTransformType
::
TRANSLATE
),
mnTransition
(
TransitionType
::
BARWIPE
),
mnSubtype
(
TransitionSubType
::
DEFAULT
),
...
...
@@ -1096,7 +1096,7 @@ sal_Bool SAL_CALL AnimationNode::getAutoReverse() throw (RuntimeException, std::
void
SAL_CALL
AnimationNode
::
setAutoReverse
(
sal_Bool
_autoreverse
)
throw
(
RuntimeException
,
std
::
exception
)
{
Guard
<
Mutex
>
aGuard
(
maMutex
);
if
(
_autoreverse
!=
mbAutoReverse
)
if
(
_autoreverse
!=
(
mbAutoReverse
?
1
:
0
)
)
{
mbAutoReverse
=
_autoreverse
;
fireChangeListener
();
...
...
@@ -1363,7 +1363,7 @@ void SAL_CALL AnimationNode::setAccumulate( sal_Bool _accumulate )
throw
(
RuntimeException
,
std
::
exception
)
{
Guard
<
Mutex
>
aGuard
(
maMutex
);
if
(
_accumulate
!=
mbAccumulate
)
if
(
_accumulate
!=
(
mbAccumulate
?
1
:
0
)
)
{
mbAccumulate
=
_accumulate
;
fireChangeListener
();
...
...
@@ -1544,7 +1544,7 @@ sal_Bool SAL_CALL AnimationNode::getDirection() throw (RuntimeException, std::ex
void
SAL_CALL
AnimationNode
::
setDirection
(
sal_Bool
_direction
)
throw
(
RuntimeException
,
std
::
exception
)
{
Guard
<
Mutex
>
aGuard
(
maMutex
);
if
(
_direction
!=
mbDirection
)
if
(
_direction
!=
(
mbDirection
?
1
:
0
)
)
{
mbDirection
=
_direction
;
fireChangeListener
();
...
...
@@ -1670,7 +1670,7 @@ sal_Bool SAL_CALL AnimationNode::getMode() throw (RuntimeException, std::excepti
void
SAL_CALL
AnimationNode
::
setMode
(
sal_Bool
_mode
)
throw
(
RuntimeException
,
std
::
exception
)
{
Guard
<
Mutex
>
aGuard
(
maMutex
);
if
(
_mode
!=
mbMode
)
if
(
_mode
!=
(
mbMode
?
1
:
0
)
)
{
mbMode
=
_mode
;
fireChangeListener
();
...
...
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