diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-28 17:57:39 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-28 17:57:39 +0100 |
commit | 433fb8c055ff93a9bb3567310d2dda6bbcc9d635 (patch) | |
tree | e7b8e7a60ef74d3221a93c0bdd19fbbd24077a25 /sw | |
parent | 40a7169c9f177b4568725237d13c66569684f891 (diff) |
Clean VclPtr and namespace usage.
Change-Id: I75142b8f72bb05c8b386f7511e5c18d4775eecde
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/viewsh.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index f093028b041f..714e9d2ee8f2 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -30,6 +30,7 @@ #include <stack> #include <vcl/mapmod.hxx> #include <vcl/print.hxx> +#include <vcl/vclptr.hxx> #define LOK_USE_UNSTABLE_API #include <LibreOfficeKit/LibreOfficeKitTypes.h> @@ -128,7 +129,7 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell> SwViewShellImp *mpImp; // Core-internals of SwViewShell. // The pointer is never 0. - VclPtr< ::vcl::Window> mpWin; ///< = 0 during printing or pdf export + VclPtr<vcl::Window> mpWin; ///< = 0 during printing or pdf export VclPtr<OutputDevice> mpOut; ///< Window, Printer, VirtDev, ... VclPtr<OutputDevice> mpTmpRef; // Temporariy reference device. Is used // during (printer depending) prospect @@ -186,7 +187,7 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell> protected: static ShellResource* mpShellRes; ///< Resources for the Shell. - static vcl::Window* mpCareWindow; ///< Avoid this window. + static vcl::Window* mpCareWindow; ///< Avoid this window. SwRect maVisArea; ///< The modern version of VisArea. SwDoc *mpDoc; ///< The document; never 0. |