diff --git a/include/svx/svdograf.hxx b/include/svx/svdograf.hxx index bf7e329d5442..69ce11533caa 100644 --- a/include/svx/svdograf.hxx +++ b/include/svx/svdograf.hxx @@ -29,17 +29,8 @@ #include #include -namespace sdr -{ - namespace properties - { - class GraphicProperties; - } // end of namespace properties - namespace contact - { - class ViewObjectContactOfGraphic; - } // end of namespace contact -} // end of namespace sdr +namespace sdr::properties { class GraphicProperties; } +namespace sdr::contact { class ViewObjectContactOfGraphic; } /** * Options for GetTransformedGraphic() diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index d5552a7c72a4..fc6936a95282 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -64,7 +64,7 @@ private: SdrObjList(const SdrObjList& rSrcList) = delete; SdrObjList &operator=(const SdrObjList& rSrcList) = delete; - ::std::vector maList; + std::vector maList; tools::Rectangle maSdrObjListOutRect; tools::Rectangle maSdrObjListSnapRect; diff --git a/include/svx/svdpagv.hxx b/include/svx/svdpagv.hxx index ab9bfa5625ae..3aceb48d1d4b 100644 --- a/include/svx/svdpagv.hxx +++ b/include/svx/svdpagv.hxx @@ -42,20 +42,16 @@ class SdrView; class SdrPageObj; class SdrPageView; -namespace sdr +namespace sdr::contact { - namespace contact - { - class ViewObjectContactRedirector; - class DisplayInfo; - class ViewObjectContactRedirector; - } // end of namespace contact -} // end of namespace sdr + class ViewObjectContactRedirector; + class DisplayInfo; + class ViewObjectContactRedirector; +} // typedefs for a list of SdrPageWindow class SdrPageWindow; - class SVXCORE_DLLPUBLIC SdrPageView { private: @@ -255,6 +251,4 @@ public: const Color& GetApplicationDocumentColor() const { return maDocumentColor;} }; -#pragma once - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */