Remove unused fields

Change-Id: Ia7d3b7e319f2a568120add15ef05915a98fe6696
This commit is contained in:
Tor Lillqvist
2014-03-19 15:15:27 +02:00
parent 861d87d552
commit 0fb498ccfd
2 changed files with 0 additions and 4 deletions

View File

@@ -48,9 +48,7 @@ protected:
Point aRef1; // Referencepoint: Resize fixed point, (axis of rotation,
Point aRef2; // axis of reflection, ...)
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 aRealLast; // RealPos of the last Point (for MinMoved)
Rectangle aActionRect;
bool bEndDragChangesAttributes;

View File

@@ -60,13 +60,11 @@ void SdrDragStat::Reset(const Point& rPnt)
Reset();
Start()=rPnt;
aPos0=rPnt;
aRealPos0=rPnt;
RealNow()=rPnt;
}
void SdrDragStat::NextMove(const Point& rPnt)
{
aRealPos0=GetRealNow();
aPos0=GetNow();
RealNow()=rPnt;
Point aBla=KorregPos(GetRealNow(),GetPrev());