diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-14 11:10:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-15 07:16:03 +0100 |
commit | 8355734f3511f951972fa02e94f5d40052d873de (patch) | |
tree | 6a3f5c8f4cda35f70af1c9b094617dd4a6f4d775 /svx/source/dialog/contimp.hxx | |
parent | bd79b7154dec6ad6bcc3aa5d875d22d01270e39f (diff) |
sal_uIntPtr->sal_Int32 in SvxSuperContourDlg
Change-Id: I765cd20b16cbb832e4e0fe2beca4c6b89fec7e05
Reviewed-on: https://gerrit.libreoffice.org/46481
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/dialog/contimp.hxx')
-rw-r--r-- | svx/source/dialog/contimp.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/contimp.hxx b/svx/source/dialog/contimp.hxx index e3358b48ff9d..efc25ad375c7 100644 --- a/svx/source/dialog/contimp.hxx +++ b/svx/source/dialog/contimp.hxx @@ -59,7 +59,7 @@ class SvxSuperContourDlg : public SvxContourDlg VclPtr<MetricField> m_pMtfTolerance; VclPtr<ContourWindow> m_pContourWnd; VclPtr<StatusBar> m_pStbStatus; - sal_uIntPtr nGrfChanged; + sal_Int32 mnGrfChanged; bool bExecState; bool bUpdateGraphicLinked; bool bGraphicLinked; @@ -103,7 +103,7 @@ public: void SetGraphic( const Graphic& rGraphic ); const Graphic& GetGraphic() const { return aGraphic; } - bool IsGraphicChanged() const { return nGrfChanged > 0; } + bool IsGraphicChanged() const { return mnGrfChanged > 0; } void SetPolyPolygon( const tools::PolyPolygon& rPolyPoly ); tools::PolyPolygon GetPolyPolygon(); |