diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-05-30 10:57:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-30 21:15:03 +0200 |
commit | 709040e0adf0a533700576b14c8498f986a601e9 (patch) | |
tree | b442f01822040432312359c2c4bd1536d53085bb /sd | |
parent | 656c8754abc6678e5efcaa1fec1dcac0a01ca54c (diff) |
remove duplicate 'using namespace'
Change-Id: I7f8828f677cfb588135ff75c03ffb75895773440
Reviewed-on: https://gerrit.libreoffice.org/38201
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.cxx | 1 | ||||
-rw-r--r-- | sd/source/ui/view/ViewShellBase.cxx | 13 |
2 files changed, 5 insertions, 9 deletions
diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx index 27874e688254..85c80b19bfeb 100644 --- a/sd/source/ui/remotecontrol/Receiver.cxx +++ b/sd/source/ui/remotecontrol/Receiver.cxx @@ -25,7 +25,6 @@ #include <com/sun/star/presentation/SlideShow.hpp> using namespace sd; -using namespace ::com::sun::star; using namespace ::osl; using namespace std; using namespace ::com::sun::star; diff --git a/sd/source/ui/view/ViewShellBase.cxx b/sd/source/ui/view/ViewShellBase.cxx index 308e28f890af..28fd17b14d32 100644 --- a/sd/source/ui/view/ViewShellBase.cxx +++ b/sd/source/ui/view/ViewShellBase.cxx @@ -92,11 +92,13 @@ using namespace sd; #include "sdslots.hxx" using ::sd::framework::FrameworkHelper; -using namespace com::sun::star::uno; -using namespace com::sun::star::frame; + +using namespace com::sun::star; +using namespace com::sun::star::beans; using namespace com::sun::star::container; +using namespace com::sun::star::drawing::framework; using namespace com::sun::star::lang; -using namespace com::sun::star::beans; +using namespace com::sun::star::uno; namespace { @@ -111,11 +113,6 @@ private: } // end of anonymous namespace -using namespace ::com::sun::star; -using namespace ::com::sun::star::uno; -using namespace ::com::sun::star::drawing::framework; -using ::sd::framework::FrameworkHelper; - namespace sd { class ViewShellBase::Implementation |