diff options
Diffstat (limited to 'binaryurp/source/outgoingrequest.hxx')
-rw-r--r-- | binaryurp/source/outgoingrequest.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryurp/source/outgoingrequest.hxx b/binaryurp/source/outgoingrequest.hxx index efa673eac781..31daf919387f 100644 --- a/binaryurp/source/outgoingrequest.hxx +++ b/binaryurp/source/outgoingrequest.hxx @@ -30,12 +30,12 @@ struct OutgoingRequest { enum Kind { KIND_NORMAL, KIND_REQUEST_CHANGE, KIND_COMMIT_CHANGE }; OutgoingRequest( - Kind theKind, com::sun::star::uno::TypeDescription theMember, + Kind theKind, css::uno::TypeDescription theMember, bool theSetter): member(std::move(theMember)), kind(theKind), setter(theSetter) {} - com::sun::star::uno::TypeDescription member; + css::uno::TypeDescription member; Kind kind; |