diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-10-04 20:37:54 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-10-04 22:25:07 +0200 |
commit | bf82274d327146ec0aa2b4f8a0e6d1bf24366cb3 (patch) | |
tree | 180b6185aa3d5194d89cd21d901f70ed32e5c5dd /sfx2 | |
parent | b845fc51bb5c40eac121bbe52d8c77257bcbcdf3 (diff) |
drop 'using namespace std' in sax/sc/scaddins/sfx2/shell
Change-Id: I422a6d5b0151115203fd2d7c0fc5597903d3ec8b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123064
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/infobar.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/dialog/infobar.cxx b/sfx2/source/dialog/infobar.cxx index 9ca00fb95e47..eade717ea474 100644 --- a/sfx2/source/dialog/infobar.cxx +++ b/sfx2/source/dialog/infobar.cxx @@ -28,7 +28,6 @@ #include <vcl/weldutils.hxx> #include <bitmaps.hlst> -using namespace std; using namespace drawinglayer::geometry; using namespace drawinglayer::processor2d; using namespace drawinglayer::primitive2d; @@ -107,7 +106,7 @@ void SfxInfoBarWindow::SetCloseButtonImage() Point aBtnPos(0, 0); const ViewInformation2D aNewViewInfos; - const unique_ptr<BaseProcessor2D> pProcessor( + const std::unique_ptr<BaseProcessor2D> pProcessor( createBaseProcessor2DFromOutputDevice(*xDevice, aNewViewInfos)); const ::tools::Rectangle aRect(aBtnPos, xDevice->PixelToLogic(aSize)); |