summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-Aarons_Laptop\Aaron <abourdeaux@csumb.edu>2024-03-25 17:04:13 -0400
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2024-03-29 13:58:05 +0100
commitcd72cefbc7b8abbdc5a66366e59ec81681d74aba (patch)
tree950f3c98aac554039cef648f6be7bb54c142ebe1
parent64fa566e659112b46d063dc0e0a89fe8f8065235 (diff)
tdf#143148 replace include guards with pragma once
Change-Id: Idd8ecf3ef95ce2296b31a1c7fb1ddadefdd573f8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165293 Tested-by: Jenkins Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
-rw-r--r--sd/source/console/PresenterAccessibility.hxx5
-rw-r--r--sd/source/console/PresenterBitmapContainer.hxx5
-rw-r--r--sd/source/console/PresenterCanvasHelper.hxx5
3 files changed, 3 insertions, 12 deletions
diff --git a/sd/source/console/PresenterAccessibility.hxx b/sd/source/console/PresenterAccessibility.hxx
index 12015d0938d0..350f0995fc56 100644
--- a/sd/source/console/PresenterAccessibility.hxx
+++ b/sd/source/console/PresenterAccessibility.hxx
@@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERACCESSIBILITY_HXX
-#define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERACCESSIBILITY_HXX
+#pragma once
#include "PresenterPaneContainer.hxx"
@@ -110,6 +109,4 @@ private:
} // end of namespace ::sd::presenter
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/console/PresenterBitmapContainer.hxx b/sd/source/console/PresenterBitmapContainer.hxx
index 7a9de89a7f13..ee87a5be23db 100644
--- a/sd/source/console/PresenterBitmapContainer.hxx
+++ b/sd/source/console/PresenterBitmapContainer.hxx
@@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERBITMAPCONTAINER_HXX
-#define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERBITMAPCONTAINER_HXX
+#pragma once
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
@@ -141,6 +140,4 @@ typedef std::shared_ptr<PresenterBitmapContainer::BitmapDescriptor> SharedBitmap
} // end of namespace ::sdext::presenter
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/console/PresenterCanvasHelper.hxx b/sd/source/console/PresenterCanvasHelper.hxx
index 8902a9712bf6..9f5ce96ab3b6 100644
--- a/sd/source/console/PresenterCanvasHelper.hxx
+++ b/sd/source/console/PresenterCanvasHelper.hxx
@@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERCANVASHELPER_HXX
-#define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERCANVASHELPER_HXX
+#pragma once
#include "PresenterBitmapContainer.hxx"
#include <com/sun/star/awt/Point.hpp>
@@ -102,6 +101,4 @@ private:
}
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */