summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-21 05:42:51 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-21 09:15:59 +0000
commit8fc6905674142c226a117a97a08cf0b24c9d4fc1 (patch)
tree4b32555fc44b1c84819bcc75bfd1451b57dd2e2b /sfx2
parentaa02102fe9d338eb7d0774bd54feeac2142506ac (diff)
fdo#68849 add some header guards
Change-Id: I9d25a58f22095689eccc0ac444c163d1e9bee69f Reviewed-on: https://gerrit.libreoffice.org/6364 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/fwkhelper.hxx5
-rw-r--r--sfx2/source/appl/panelist.hxx1
-rw-r--r--sfx2/source/doc/graphhelp.hxx5
-rw-r--r--sfx2/source/doc/oleprops.hxx4
-rw-r--r--sfx2/source/doc/printhelper.hxx5
5 files changed, 20 insertions, 0 deletions
diff --git a/sfx2/inc/fwkhelper.hxx b/sfx2/inc/fwkhelper.hxx
index cabf89a64f4d..28391007c329 100644
--- a/sfx2/inc/fwkhelper.hxx
+++ b/sfx2/inc/fwkhelper.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef _SFX_FWKHELPER_HXX_
+#define _SFX_FWKHELPER_HXX_
+
#include "sal/config.h"
#include "sfx2/dllapi.h"
#include <com/sun/star/uno/Reference.hxx>
@@ -28,4 +31,6 @@ SFX2_DLLPUBLIC void SAL_CALL RefreshToolbars(
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame
);
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sfx2/source/appl/panelist.hxx b/sfx2/source/appl/panelist.hxx
index 0bb327970eff..a3cdaec71979 100644
--- a/sfx2/source/appl/panelist.hxx
+++ b/sfx2/source/appl/panelist.hxx
@@ -18,6 +18,7 @@
*/
#ifndef SFX_PANELIST_HXX
+#define SFX_PANELIST_HXX
#include <vcl/taskpanelist.hxx> // includes also vcl/window.hxx
diff --git a/sfx2/source/doc/graphhelp.hxx b/sfx2/source/doc/graphhelp.hxx
index 0dc980d38a00..de298ea3b86b 100644
--- a/sfx2/source/doc/graphhelp.hxx
+++ b/sfx2/source/doc/graphhelp.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef SFX_GRAPHHELP_HXX
+#define SFX_GRAPHHELP_HXX
+
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/io/XStream.hpp>
@@ -65,4 +68,6 @@ public:
};
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sfx2/source/doc/oleprops.hxx b/sfx2/source/doc/oleprops.hxx
index d7f2a19eddab..d69c58ec6679 100644
--- a/sfx2/source/doc/oleprops.hxx
+++ b/sfx2/source/doc/oleprops.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef SFX_OLEPROPS_HXX
+#define SFX_OLEPROPS_HXX
+
#include <map>
#include <boost/shared_ptr.hpp>
#include <osl/thread.h>
@@ -398,5 +401,6 @@ private:
SfxOleSectionMap maSectionMap;
};
+#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sfx2/source/doc/printhelper.hxx b/sfx2/source/doc/printhelper.hxx
index e8f3164176b1..997768955abf 100644
--- a/sfx2/source/doc/printhelper.hxx
+++ b/sfx2/source/doc/printhelper.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef SFX_PRINTHELPER_HXX
+#define SFX_PRINTHELPER_HXX
+
#include "sal/config.h"
#include "sfx2/dllapi.h"
#include "sal/types.h"
@@ -60,4 +63,6 @@ private:
virtual void impl_setPrinter(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rPrinter,SfxPrinter*& pPrinter,sal_uInt16& nChangeFlags,SfxViewShell*& pViewSh);
} ;
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */