diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-05-22 05:52:36 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:02:37 +0200 |
commit | b67527fb75cd95201d9251064e8b9d5b1c4fe62a (patch) | |
tree | fdf84502ae0c4af1b456a56e191b532294328f5a /vcl/source/uitest | |
parent | a32eb53ca1a379277b80a1ba01072a441f090919 (diff) |
uitest: dump the implementation name as well
Change-Id: Ifefc5eb8c271aae0c815bb68535b1e3eb8afb2cd
Diffstat (limited to 'vcl/source/uitest')
-rw-r--r-- | vcl/source/uitest/uiobject.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx index 512d05389f43..0f399f121a24 100644 --- a/vcl/source/uitest/uiobject.cxx +++ b/vcl/source/uitest/uiobject.cxx @@ -392,6 +392,7 @@ OUString WindowUIObject::get_name() const void WindowUIObject::dumpState() const { DUMP_UITEST(get_name() << " " << mxWindow->get_id()); + DUMP_UITEST("Implementation Name: " << typeid(*mxWindow.get()).name()); StringMap aState = const_cast<WindowUIObject*>(this)->get_state(); for (auto itr = aState.begin(), itrEnd = aState.end(); itr != itrEnd; ++itr) { |