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
95c77651
Kaydet (Commit)
95c77651
authored
Eki 07, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: rhbz#1015281 crash on clicking custom animation
Change-Id: Ibb4519a3d41266ae16fcb93567cf5b5c67066b0c
üst
e5dd1952
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
motionpathtag.cxx
sd/source/ui/animations/motionpathtag.cxx
+5
-2
No files found.
sd/source/ui/animations/motionpathtag.cxx
Dosyayı görüntüle @
95c77651
...
...
@@ -366,7 +366,8 @@ MotionPathTag::MotionPathTag( CustomAnimationPane& rPane, ::sd::View& rView, con
{
mpPathObj
=
mpEffect
->
createSdrPathObjFromPath
();
mxPolyPoly
=
mpPathObj
->
GetPathPoly
();
maOriginPos
=
mxOrigin
->
getPosition
();
if
(
mxOrigin
.
is
())
maOriginPos
=
mxOrigin
->
getPosition
();
SdrPage
*
pPage
=
mrView
.
GetSdrPageView
()
->
GetPage
();
if
(
pPage
)
...
...
@@ -946,7 +947,9 @@ void MotionPathTag::addCustomHandles( SdrHdlList& rHandlerList )
{
if
(
mpPathObj
)
{
::
com
::
sun
::
star
::
awt
::
Point
aPos
(
mxOrigin
->
getPosition
()
);
::
com
::
sun
::
star
::
awt
::
Point
aPos
;
if
(
mxOrigin
.
is
())
aPos
=
mxOrigin
->
getPosition
();
if
(
(
aPos
.
X
!=
maOriginPos
.
X
)
||
(
aPos
.
Y
!=
maOriginPos
.
Y
)
)
{
const
basegfx
::
B2DHomMatrix
aTransform
(
basegfx
::
tools
::
createTranslateB2DHomMatrix
(
...
...
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