static/source/embindmaker/embindmaker.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit efaf6218a2548de051fc770bd5d4996e97e771d2 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Wed Jan 31 13:35:39 2024 +0100 Commit: Stephan Bergmann <stephan.bergm...@allotropia.de> CommitDate: Wed Jan 31 21:52:48 2024 +0100 embindmaker: Consistently spell out "::com::sun::star::" Change-Id: I253236c908b1827479c1824cf01c707e48ef58c9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162832 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de> diff --git a/static/source/embindmaker/embindmaker.cxx b/static/source/embindmaker/embindmaker.cxx index d77973513bf4..43d315679d6c 100644 --- a/static/source/embindmaker/embindmaker.cxx +++ b/static/source/embindmaker/embindmaker.cxx @@ -288,7 +288,7 @@ void dumpType(std::ostream& out, rtl::Reference<TypeManager> const& manager, b2u(codemaker::UnoType::decompose(u2b(resolveAllTypedefs(manager, name)), &k, &args))); for (sal_Int32 i = 0; i != k; ++i) { - out << "::css::uno::Sequence<"; + out << "::com::sun::star::uno::Sequence<"; } switch (manager->getSort(n)) { @@ -332,10 +332,10 @@ void dumpType(std::ostream& out, rtl::Reference<TypeManager> const& manager, out << "::rtl::OUString"; break; case codemaker::UnoType::Sort::Type: - out << "::css::uno::Type"; + out << "::com::sun::star::uno::Type"; break; case codemaker::UnoType::Sort::Any: - out << "::css::uno::Any"; + out << "::com::sun::star::uno::Any"; break; case codemaker::UnoType::Sort::Enum: case codemaker::UnoType::Sort::PlainStruct: @@ -364,7 +364,7 @@ void dumpType(std::ostream& out, rtl::Reference<TypeManager> const& manager, } break; case codemaker::UnoType::Sort::Interface: - out << "::css::uno::Reference<"; + out << "::com::sun::star::uno::Reference<"; out << cppName(n); out << ">"; break;