diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-04-08 14:22:40 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-04-08 17:51:36 +0200 |
commit | e3efae3ebc593b234058908c82d0f62a30736f40 (patch) | |
tree | 48478d6fb6ccc35f26b99703781445efb7b29d6c /xmloff | |
parent | c2254a12df715f3220f8c070be02b754d6375b40 (diff) |
xmloff: also print what is duplicate
Change-Id: I87b5122b8f1f4e26ba16ebc1228fb77f8b7800d9
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmlimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 48b54c43c271..922f49034e3e 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -1435,7 +1435,7 @@ void SvXMLImport::AddStyleDisplayName( sal_uInt16 nFamily, ::std::pair<StyleMap::iterator,bool> aRes( mpStyleMap->insert( aValue ) ); SAL_WARN_IF( !aRes.second, "xmloff.core", - "duplicate style name" ); + "duplicate style name of family " << nFamily << ": \"" << rName << "\""); } |