Kaydet (Commit) 0fb498cc authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Remove unused fields

Change-Id: Ia7d3b7e319f2a568120add15ef05915a98fe6696
üst 861d87d5
...@@ -48,9 +48,7 @@ protected: ...@@ -48,9 +48,7 @@ protected:
Point aRef1; // Referencepoint: Resize fixed point, (axis of rotation, Point aRef1; // Referencepoint: Resize fixed point, (axis of rotation,
Point aRef2; // axis of reflection, ...) Point aRef2; // axis of reflection, ...)
Point aPos0; // Position at the last Event Point aPos0; // Position at the last Event
Point aRealPos0; // Position at the last Event
Point aRealNow; // Current dragging position without Snap, Ortho and Limit Point aRealNow; // Current dragging position without Snap, Ortho and Limit
Point aRealLast; // RealPos of the last Point (for MinMoved)
Rectangle aActionRect; Rectangle aActionRect;
bool bEndDragChangesAttributes; bool bEndDragChangesAttributes;
......
...@@ -60,13 +60,11 @@ void SdrDragStat::Reset(const Point& rPnt) ...@@ -60,13 +60,11 @@ void SdrDragStat::Reset(const Point& rPnt)
Reset(); Reset();
Start()=rPnt; Start()=rPnt;
aPos0=rPnt; aPos0=rPnt;
aRealPos0=rPnt;
RealNow()=rPnt; RealNow()=rPnt;
} }
void SdrDragStat::NextMove(const Point& rPnt) void SdrDragStat::NextMove(const Point& rPnt)
{ {
aRealPos0=GetRealNow();
aPos0=GetNow(); aPos0=GetNow();
RealNow()=rPnt; RealNow()=rPnt;
Point aBla=KorregPos(GetRealNow(),GetPrev()); Point aBla=KorregPos(GetRealNow(),GetPrev());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment