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
42bcbee2
Kaydet (Commit)
42bcbee2
authored
Haz 26, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
clang: Result of operation is garbage or undefined
Change-Id: I49f58ae6a7c046af4c3de8d35219ffe2e4ba8f20
üst
a7fcb3ed
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
ChainablePropertySet.cxx
comphelper/source/property/ChainablePropertySet.cxx
+1
-1
MasterPropertySet.cxx
comphelper/source/property/MasterPropertySet.cxx
+1
-1
propertysethelper.cxx
comphelper/source/property/propertysethelper.cxx
+1
-1
dlgctl3d.cxx
svx/source/dialog/dlgctl3d.cxx
+3
-3
No files found.
comphelper/source/property/ChainablePropertySet.cxx
Dosyayı görüntüle @
42bcbee2
...
...
@@ -208,7 +208,7 @@ PropertyState SAL_CALL ChainablePropertySet::getPropertyState( const OUString& P
if
(
aIter
==
mpInfo
->
maMap
.
end
())
throw
UnknownPropertyException
(
PropertyName
,
static_cast
<
XPropertySet
*
>
(
this
)
);
PropertyState
aState
;
PropertyState
aState
(
PropertyState_AMBIGUOUS_VALUE
)
;
_preGetPropertyState
();
_getPropertyState
(
*
((
*
aIter
).
second
),
aState
);
...
...
comphelper/source/property/MasterPropertySet.cxx
Dosyayı görüntüle @
42bcbee2
...
...
@@ -353,7 +353,7 @@ PropertyState SAL_CALL MasterPropertySet::getPropertyState( const OUString& Prop
if
(
aIter
==
mpInfo
->
maMap
.
end
())
throw
UnknownPropertyException
(
PropertyName
,
static_cast
<
XPropertySet
*
>
(
this
)
);
PropertyState
aState
;
PropertyState
aState
(
PropertyState_AMBIGUOUS_VALUE
)
;
if
(
(
*
aIter
).
second
->
mnMapId
==
0
)
// 0 means it's one of ours !
{
...
...
comphelper/source/property/propertysethelper.cxx
Dosyayı görüntüle @
42bcbee2
...
...
@@ -218,7 +218,7 @@ PropertyState SAL_CALL PropertySetHelper::getPropertyState( const OUString& Prop
aEntries
[
1
]
=
NULL
;
PropertyState
aState
;
PropertyState
aState
(
PropertyState_AMBIGUOUS_VALUE
)
;
_getPropertyStates
(
(
const
PropertyMapEntry
**
)
aEntries
,
&
aState
);
return
aState
;
...
...
svx/source/dialog/dlgctl3d.cxx
Dosyayı görüntüle @
42bcbee2
...
...
@@ -1075,7 +1075,7 @@ void SvxLightCtl3D::CheckSelection()
if
(
bSelectionValid
)
{
double
fHor
,
fVer
;
double
fHor
(
0.0
),
fVer
(
0.0
)
;
maLightControl
.
GetPosition
(
fHor
,
fVer
);
maHorScroller
.
SetThumbPos
(
sal_Int32
(
fHor
*
100.0
)
);
maVerScroller
.
SetThumbPos
(
18000
-
sal_Int32
((
fVer
+
90.0
)
*
100.0
)
);
...
...
@@ -1084,7 +1084,7 @@ void SvxLightCtl3D::CheckSelection()
void
SvxLightCtl3D
::
move
(
double
fDeltaHor
,
double
fDeltaVer
)
{
double
fHor
,
fVer
;
double
fHor
(
0.0
),
fVer
(
0.0
)
;
maLightControl
.
GetPosition
(
fHor
,
fVer
);
fHor
+=
fDeltaHor
;
...
...
@@ -1275,7 +1275,7 @@ IMPL_LINK_NOARG(SvxLightCtl3D, ButtonPress)
IMPL_LINK_NOARG
(
SvxLightCtl3D
,
InternalInteractiveChange
)
{
double
fHor
,
fVer
;
double
fHor
(
0.0
),
fVer
(
0.0
)
;
maLightControl
.
GetPosition
(
fHor
,
fVer
);
maHorScroller
.
SetThumbPos
(
sal_Int32
(
fHor
*
100.0
)
);
...
...
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