Kaydet (Commit) bec99379 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708195 Uninitialized scalar field

Change-Id: I3f32bc1e1982c303d4ec7624e2ee7361533525f0
üst 7ebc5955
...@@ -40,7 +40,7 @@ protected: ...@@ -40,7 +40,7 @@ protected:
public: public:
IMapCircleObject() {}; IMapCircleObject() : nRadius(0) {}
IMapCircleObject( const Point& rCenter, sal_uLong nRad, IMapCircleObject( const Point& rCenter, sal_uLong nRad,
const OUString& rURL, const OUString& rURL,
const OUString& rAltText, const OUString& rAltText,
...@@ -49,7 +49,7 @@ public: ...@@ -49,7 +49,7 @@ public:
const OUString& rName, const OUString& rName,
bool bActive = true, bool bActive = true,
bool bPixelCoords = true ); bool bPixelCoords = true );
virtual ~IMapCircleObject() {}; virtual ~IMapCircleObject() {}
virtual sal_uInt16 GetType() const SAL_OVERRIDE; virtual sal_uInt16 GetType() const SAL_OVERRIDE;
virtual bool IsHit( const Point& rPoint ) const SAL_OVERRIDE; virtual bool IsHit( const Point& rPoint ) const SAL_OVERRIDE;
......
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