summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-16 17:37:01 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-16 17:38:44 +0200
commit048e59181955f13d9b9add933f8d19a7778d4932 (patch)
tree34786aaee34e9abfd13e9edde6586f71b5444712 /unodevtools
parent4b9301d424baab1552222d9be56726c64aefb720 (diff)
Further codemaker, unodevtools clean-up
...getting rid of now dangling references to module registry. Change-Id: Iccad7ff5dc0e79bf91b7b7dae03b73f16adeb121
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/Executable_skeletonmaker.mk1
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx3
-rw-r--r--unodevtools/source/skeletonmaker/cpptypemaker.cxx4
-rw-r--r--unodevtools/source/skeletonmaker/javacompskeleton.cxx4
-rw-r--r--unodevtools/source/skeletonmaker/javatypemaker.cxx2
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.cxx1
-rw-r--r--unodevtools/source/skeletonmaker/skeletonmaker.cxx1
7 files changed, 15 insertions, 1 deletions
diff --git a/unodevtools/Executable_skeletonmaker.mk b/unodevtools/Executable_skeletonmaker.mk
index 1cb142e48887..3c6c791a23a1 100644
--- a/unodevtools/Executable_skeletonmaker.mk
+++ b/unodevtools/Executable_skeletonmaker.mk
@@ -34,7 +34,6 @@ $(eval $(call gb_Executable_set_include,uno-skeletonmaker,\
))
$(eval $(call gb_Executable_use_libraries,uno-skeletonmaker,\
- reg \
sal \
salhelper \
unoidl \
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index 41ef20394654..435ee4d6d586 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -17,7 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include "sal/config.h"
+
#include "codemaker/commoncpp.hxx"
+#include "codemaker/global.hxx"
#include "skeletoncommon.hxx"
#include "skeletoncpp.hxx"
diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
index 946181566b46..abd301269f7d 100644
--- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
@@ -17,7 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include "sal/config.h"
+
+#include "codemaker/codemaker.hxx"
#include "codemaker/commoncpp.hxx"
+#include "codemaker/global.hxx"
#include "skeletoncommon.hxx"
#include "skeletoncpp.hxx"
diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
index 339dbad9ed99..b617eea614b4 100644
--- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
@@ -17,7 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include "sal/config.h"
+
#include "codemaker/commonjava.hxx"
+#include "codemaker/global.hxx"
+#include "rtl/strbuf.hxx"
#include "skeletoncommon.hxx"
#include "skeletonjava.hxx"
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index 0d24942f6f33..cb84458ac752 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -21,7 +21,9 @@
#include <cstring>
+#include "codemaker/codemaker.hxx"
#include "codemaker/commonjava.hxx"
+#include "codemaker/global.hxx"
#include "skeletoncommon.hxx"
#include "skeletonjava.hxx"
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.cxx b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
index ae298d06e7f0..d233d68bbf39 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.cxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
@@ -22,6 +22,7 @@
#include "codemaker/commonjava.hxx"
#include "codemaker/commoncpp.hxx"
#include "codemaker/generatedtypeset.hxx"
+#include "codemaker/global.hxx"
#include "unoidl/unoidl.hxx"
#include "skeletoncommon.hxx"
diff --git a/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
index c601245d85c2..98fab210bb7d 100644
--- a/unodevtools/source/skeletonmaker/skeletonmaker.cxx
+++ b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
@@ -18,6 +18,7 @@
*/
#include <iostream>
+#include "codemaker/global.hxx"
#include "codemaker/typemanager.hxx"
#include "sal/main.h"
#include "rtl/process.h"