summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJörg Barfurth <jb@openoffice.org>2001-06-25 12:28:36 +0000
committerJörg Barfurth <jb@openoffice.org>2001-06-25 12:28:36 +0000
commitbfbfe5c3689d84587973c5b0fd90503c775e7bd3 (patch)
tree46b3bb5b79107361029469f84de573c919a0569b /configmgr
parentef6e239de18e0c1885c5be9170af0624bc514b16 (diff)
Fixed missing include of configexcept.hxx; added missing include guards
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treecache/disposetimer.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/configmgr/source/treecache/disposetimer.cxx b/configmgr/source/treecache/disposetimer.cxx
index 98a2993ab938..f0adacfeae97 100644
--- a/configmgr/source/treecache/disposetimer.cxx
+++ b/configmgr/source/treecache/disposetimer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: disposetimer.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: jb $ $Date: 2001-05-30 10:59:15 $
+ * last change: $Author: jb $ $Date: 2001-06-25 13:28:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,13 +60,23 @@
************************************************************************/
#include <stdio.h>
+
#include "disposetimer.hxx"
+
+#ifndef _CONFIGMGR_TREECACHE_HXX_
#include "treecache.hxx"
+#endif
+#ifndef CONFIGMGR_TREEDATA_HXX
#include "treedata.hxx"
+#endif
+#ifndef CONFIGMGR_CONFIGEXCEPT_HXX_
+#include "configexcept.hxx"
+#endif
#ifndef _CONFIGMGR_TRACER_HXX_
#include "tracer.hxx"
#endif
+
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif