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
3ca8c0e0
Kaydet (Commit)
3ca8c0e0
authored
Haz 19, 2012
tarafından
Armin Le Grand
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#54102# Removed IsInserted() check for doing transformations to have them on interactions
üst
fb2866c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
svdoedge.cxx
svx/source/svdraw/svdoedge.cxx
+6
-6
No files found.
svx/source/svdraw/svdoedge.cxx
Dosyayı görüntüle @
3ca8c0e0
...
...
@@ -2264,8 +2264,8 @@ void SdrEdgeObj::NbcResize(const Point& rRefPnt, const Fraction& aXFact, const F
void
SdrEdgeObj
::
NbcRotate
(
const
Point
&
rRef
,
long
nWink
,
double
sn
,
double
cs
)
{
// handle start and end point if not connected
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
&&
aCon1
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
&&
aCon2
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
;
if
(
!
bCon1
&&
pEdgeTrack
)
{
...
...
@@ -2285,8 +2285,8 @@ void SdrEdgeObj::NbcRotate(const Point& rRef, long nWink, double sn, double cs)
void
SdrEdgeObj
::
NbcMirror
(
const
Point
&
rRef1
,
const
Point
&
rRef2
)
{
// handle start and end point if not connected
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
&&
aCon1
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
&&
aCon2
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
;
if
(
!
bCon1
&&
pEdgeTrack
)
{
...
...
@@ -2306,8 +2306,8 @@ void SdrEdgeObj::NbcMirror(const Point& rRef1, const Point& rRef2)
void
SdrEdgeObj
::
NbcShear
(
const
Point
&
rRef
,
long
nWink
,
double
tn
,
FASTBOOL
bVShear
)
{
// handle start and end point if not connected
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
&&
aCon1
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
&&
aCon2
.
pObj
->
IsInserted
()
;
FASTBOOL
bCon1
=
aCon1
.
pObj
!=
NULL
&&
aCon1
.
pObj
->
GetPage
()
==
pPage
;
FASTBOOL
bCon2
=
aCon2
.
pObj
!=
NULL
&&
aCon2
.
pObj
->
GetPage
()
==
pPage
;
if
(
!
bCon1
&&
pEdgeTrack
)
{
...
...
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