Kaydet (Commit) 0c0a9c3a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove redundant toplevel const

...that might be the reason the Raspbian-ARM tb broke.

Change-Id: I1c238f0bd70dd2237c66b479aa5eb79010f477ce
üst e2e45e25
......@@ -86,8 +86,8 @@ public:
/// Export the sdr object as VML.
///
/// Call this when you need to export the object as VML.
sal_uInt32 AddSdrObject( const SdrObject& rObj, const sal_Int16 eHOri = -1,
const sal_Int16 eVOri = -1, const sal_Int16 eHRel = -1, const
sal_uInt32 AddSdrObject( const SdrObject& rObj, sal_Int16 eHOri = -1,
sal_Int16 eVOri = -1, sal_Int16 eHRel = -1,
sal_Int16 eVRel = -1, const Point* pNdTopLeft = 0 );
protected:
......
......@@ -1040,7 +1040,7 @@ void VMLExport::EndShape( sal_Int32 nShapeElement )
}
}
sal_uInt32 VMLExport::AddSdrObject( const SdrObject& rObj, const sal_Int16 eHOri, const sal_Int16 eVOri, const sal_Int16 eHRel, const sal_Int16 eVRel, const Point* pNdTopLeft )
sal_uInt32 VMLExport::AddSdrObject( const SdrObject& rObj, sal_Int16 eHOri, sal_Int16 eVOri, sal_Int16 eHRel, sal_Int16 eVRel, const Point* pNdTopLeft )
{
m_pSdrObject = &rObj;
m_eHOri = eHOri;
......
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