summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-04-11 20:24:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-04-12 09:49:17 +0200
commit2577a6be556b688d9c3dbca8dea2860586e63e11 (patch)
tree316322870f104ef3584c076f1a20c722b3d8cf0c /include
parent3077f05a2198bdebd361325ed065a9d69a0491f6 (diff)
forward decl vcl::Window in toolkit/awt/vclxwindow.hxx
Change-Id: I488f994fc890cacd20a6fdc224a098fe0caf3070 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113960 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/toolkit/awt/vclxwindow.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/toolkit/awt/vclxwindow.hxx b/include/toolkit/awt/vclxwindow.hxx
index 090a52cde8d4..289d242a297b 100644
--- a/include/toolkit/awt/vclxwindow.hxx
+++ b/include/toolkit/awt/vclxwindow.hxx
@@ -17,12 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_TOOLKIT_AWT_VCLXWINDOW_HXX
-#define INCLUDED_TOOLKIT_AWT_VCLXWINDOW_HXX
+#pragma once
#include <toolkit/dllapi.h>
#include <toolkit/awt/vclxdevice.hxx>
-#include <vcl/window.hxx>
+#include <vcl/vclptr.hxx>
#include <com/sun/star/awt/XWindow2.hpp>
#include <com/sun/star/awt/XVclWindowPeer.hpp>
@@ -45,6 +44,7 @@
namespace comphelper { class OInterfaceContainerHelper2; }
namespace com::sun::star::accessibility { class XAccessibleContext; }
+namespace vcl { class Window; }
class VclWindowEvent;
@@ -225,6 +225,4 @@ public:
virtual css::uno::Reference< css::awt::XStyleSettings > SAL_CALL getStyleSettings() override;
};
-#endif // INCLUDED_TOOLKIT_AWT_VCLXWINDOW_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */