diff options
author | David Tardon <dtardon@redhat.com> | 2010-11-25 09:37:12 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-11-25 15:36:40 +0100 |
commit | a70d582f865edd1fa4eeed42bd616f0217239b79 (patch) | |
tree | d211804592c35892decd0487dc50eef9fb658b6f | |
parent | 5639343fbb93e26499c4f592c8108a2efd1b5516 (diff) |
move unnecessary includes to .cxx
-rw-r--r-- | desktop/source/deployment/registry/script/dp_lib_container.cxx | 6 | ||||
-rw-r--r-- | desktop/source/deployment/registry/script/dp_lib_container.h | 17 |
2 files changed, 19 insertions, 4 deletions
diff --git a/desktop/source/deployment/registry/script/dp_lib_container.cxx b/desktop/source/deployment/registry/script/dp_lib_container.cxx index 4dc71b7fd9..ccc2b29874 100644 --- a/desktop/source/deployment/registry/script/dp_lib_container.cxx +++ b/desktop/source/deployment/registry/script/dp_lib_container.cxx @@ -29,11 +29,17 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_desktop.hxx" +#include "com/sun/star/uno/XComponentContext.hpp" +#include "com/sun/star/ucb/XCommandEnvironment.hpp" + #include "dp_script.hrc" #include "dp_resource.h" #include "dp_xml.h" #include "dp_lib_container.h" + +#include "rtl/ustring.hxx" #include "ucbhelper/content.hxx" +#include "xmlscript/xmllib_imexp.hxx" using namespace ::dp_misc; diff --git a/desktop/source/deployment/registry/script/dp_lib_container.h b/desktop/source/deployment/registry/script/dp_lib_container.h index b0f29c1e80..009846a3c0 100644 --- a/desktop/source/deployment/registry/script/dp_lib_container.h +++ b/desktop/source/deployment/registry/script/dp_lib_container.h @@ -29,11 +29,20 @@ #if ! defined INCLUDED_DP_LIB_CONTAINER_H #define INCLUDED_DP_LIB_CONTAINER_H -#include "rtl/ustring.hxx" -#include "xmlscript/xmllib_imexp.hxx" -#include "com/sun/star/uno/XComponentContext.hpp" -#include "com/sun/star/ucb/XCommandEnvironment.hpp" +#include <com/sun/star/uno/Reference.hxx> +namespace com { namespace sun { namespace star { + namespace uno { + class XComponentContext; + } + namespace ucb { + class XCommandEnvironment; + } +}}} + +namespace rtl { + class OUString; +} namespace css = ::com::sun::star; |