diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-25 19:35:53 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-25 21:07:22 -0600 |
commit | 399ea5e9a312fe6278beff95d6ec96ead7abfc52 (patch) | |
tree | 578c58023ff1e3fdbae29e1016b3026647bb2109 | |
parent | d1c0ff14261474143fe73c8f1583e3eb3ef96b9e (diff) |
coverity#708423 Unitialized scalar field
Change-Id: I0fde656116f1fbb54894a74fed8f0387cb37c665
-rw-r--r-- | sw/source/core/inc/flyfrms.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sw/source/core/inc/flyfrms.hxx b/sw/source/core/inc/flyfrms.hxx index 2fb9c0e012e4..fb2114690c79 100644 --- a/sw/source/core/inc/flyfrms.hxx +++ b/sw/source/core/inc/flyfrms.hxx @@ -173,7 +173,6 @@ public: class SwFlyInCntFrm : public SwFlyFrm { Point aRef; //Relativ zu diesem Point wird die AbsPos berechnet. - long nLine; //Zeilenhoehe, Ref.Y() - nLine == Zeilenanfang. sal_Bool bInvalidLayout :1; sal_Bool bInvalidCntnt :1; @@ -197,7 +196,6 @@ public: const Point &rRelPos ); const Point &GetRefPoint() const { return aRef; } const Point GetRelPos() const; - long GetLineHeight() const { return nLine; } inline void InvalidateLayout() const; inline void InvalidateCntnt() const; |