diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-02-03 21:35:13 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-02-03 21:35:13 -0800 |
commit | a3d4063f8842cba7c3ecec036dabb62918838b34 (patch) | |
tree | 46a6e8cf3660ce2959d9c2bd6d5ae31ccc924a1f /pyuno/source | |
parent | 030633cd53e8aacdcf1927c46dd6d5b8db58d841 (diff) |
Add missing #include <vector> to the file.
Diffstat (limited to 'pyuno/source')
-rw-r--r-- | pyuno/source/module/pyuno_runtime.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index 26e09f2f6377..ed34ddf3b6cf 100644 --- a/pyuno/source/module/pyuno_runtime.cxx +++ b/pyuno/source/module/pyuno_runtime.cxx @@ -64,6 +64,8 @@ using com::sun::star::script::XInvocation; using com::sun::star::beans::XMaterialHolder; using com::sun::star::beans::XIntrospection; +#include <vector> + namespace pyuno { #define USTR_ASCII(x) OUString( RTL_CONSTASCII_USTRINGPARAM( x ) ) |