diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-28 14:52:01 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-28 19:30:34 +0000 |
commit | 97eead6da3a6c1aac27cdb51fb9c11b7b1024a8e (patch) | |
tree | 91ae99cf0cd175771aa0d9fe88082c76c9d3d506 /sw/inc/viewsh.hxx | |
parent | 691a5e42bf11d301522dc333faaad1e72378341c (diff) |
sw: rename SwViewImp to SwViewShellImp
It was quite confusing that the implementation class for SwView is
SwView_Impl, but SwViewShell's implementation class was SwViewImp.
Change-Id: I44fdc79f446a576b3d9b952b0c9212001b0b88fe
Reviewed-on: https://gerrit.libreoffice.org/14681
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/inc/viewsh.hxx')
-rw-r--r-- | sw/inc/viewsh.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index 16db81b5839f..052060ae9701 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -57,7 +57,7 @@ class SdrView; class SfxItemPool; class SfxViewShell; class SwViewOption; -class SwViewImp; +class SwViewShellImp; class SwPrintData; class SwPagePreviewPrtData; namespace vcl { class Window; } @@ -102,7 +102,7 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell> friend void SetOutDevAndWin( SwViewShell *pSh, OutputDevice *pOut, vcl::Window *pWin, sal_uInt16 nZoom ); - friend class SwViewImp; + friend class SwViewShellImp; friend class SwLayIdle; // For setting visible area for page preview paint. @@ -124,7 +124,7 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell> SwRect maInvalidRect; SfxViewShell *mpSfxViewShell; - SwViewImp *mpImp; // Core-internals of SwViewShell. + SwViewShellImp *mpImp; // Core-internals of SwViewShell. // The pointer is never 0. ::vcl::Window *mpWin; ///< = 0 during printing or pdf export @@ -202,8 +202,8 @@ protected: public: TYPEINFO(); - SwViewImp *Imp() { return mpImp; } - const SwViewImp *Imp() const { return mpImp; } + SwViewShellImp *Imp() { return mpImp; } + const SwViewShellImp *Imp() const { return mpImp; } const SwNodes& GetNodes() const; |