diff options
author | David Tardon <dtardon@redhat.com> | 2013-03-23 12:29:07 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-03-24 14:35:53 +0100 |
commit | 9b9a70ec0a332f26a841575e8bb7bec44b6faa78 (patch) | |
tree | 117ccfd61fc5fbf8565c038e1eeb2b0220f9736d | |
parent | d2e3b282947432ae49043074644cf6aa63cb5757 (diff) |
print typename of object, not pointer
Change-Id: I6d364851173b53c541b80e0d7e77d431f218ce15
-rw-r--r-- | xmloff/source/style/impastp4.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/impastp4.cxx b/xmloff/source/style/impastp4.cxx index 6f6f15c49749..286785819bff 100644 --- a/xmloff/source/style/impastp4.cxx +++ b/xmloff/source/style/impastp4.cxx @@ -89,7 +89,7 @@ void SvXMLAutoStylePoolP_Impl::AddFamily( "Adding duplicate family " << rStrName << " with mismatching mapper ! " << typeid(*aFind->mxMapper.get()).name() << " " << - typeid(rMapper.get()).name() ); + typeid(*rMapper.get()).name() ); } #endif |