diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-03-14 13:58:41 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-03-14 14:02:07 +0200 |
commit | 4fa902d1c16ddafbe1e3dbf396c96487fdef3ddc (patch) | |
tree | dfbbb3084c533964ba747d799899ad89b17860bb /include/comphelper/windowsdebugoutput.hxx | |
parent | c71aff0473b50a5d777cb0b426445c219370b86e (diff) |
Add IMarshal2 to IIDs recognized
Change-Id: Ib5a1da6666ff3a136c05374f10b7ca138c14492d
Diffstat (limited to 'include/comphelper/windowsdebugoutput.hxx')
-rw-r--r-- | include/comphelper/windowsdebugoutput.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/comphelper/windowsdebugoutput.hxx b/include/comphelper/windowsdebugoutput.hxx index ac8f0be943f2..da5acbb5a8d9 100644 --- a/include/comphelper/windowsdebugoutput.hxx +++ b/include/comphelper/windowsdebugoutput.hxx @@ -84,6 +84,8 @@ inline std::basic_ostream<charT, traits>& operator<<(std::basic_ostream<charT, t if (IsEqualIID(rIid, IID_IMarshal)) stream << "=\"IMarshal\""; + else if (IsEqualIID(rIid, IID_IMarshal2)) + stream << "=\"IMarshal2\""; else if (IsEqualIID(rIid, IID_INoMarshal)) stream << "=\"INoMarshal\""; else if (IsEqualIID(rIid, IID_IdentityUnmarshal)) |