diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-29 21:51:19 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-11-04 12:30:40 -0500 |
commit | 709784cf1d417b4b2df8c5228a4664f697e45a5c (patch) | |
tree | aebf751b13eefee9d0effc31b8119953ab6d459e /sw | |
parent | 2ebf98e8225523186965a2ced928b0623020e41e (diff) |
Apply pimpl to SdrPageWindow.
Change-Id: I54554a229c03ff87096782344a728a49636c1de1
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/viewimp.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/view/vdraw.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/inc/viewimp.hxx b/sw/source/core/inc/viewimp.hxx index 66a652510944..341c1d088cb0 100644 --- a/sw/source/core/inc/viewimp.hxx +++ b/sw/source/core/inc/viewimp.hxx @@ -175,7 +175,7 @@ public: const SwRect& _rRect, const Color* _pPageBackgrdColor = 0, const bool _bIsPageRightToLeft = false, - sdr::contact::ViewObjectContactRedirector* pRedirector = 0 ) const; + sdr::contact::ViewObjectContactRedirector* pRedirector = 0 ); /** * Is passed to the DrawEngine as a Link and decides what is painted diff --git a/sw/source/core/view/vdraw.cxx b/sw/source/core/view/vdraw.cxx index 6c80d1f64b9b..f7aae19fe9eb 100644 --- a/sw/source/core/view/vdraw.cxx +++ b/sw/source/core/view/vdraw.cxx @@ -87,7 +87,7 @@ void SwViewImp::PaintLayer( const SdrLayerID _nLayerID, const SwRect& aPaintRect, const Color* _pPageBackgrdColor, const bool _bIsPageRightToLeft, - sdr::contact::ViewObjectContactRedirector* pRedirector ) const + sdr::contact::ViewObjectContactRedirector* pRedirector ) { if ( HasDrawView() ) { |