summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAhmed ElShreif <aelshreif7@gmail.com>2019-07-06 05:23:08 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-08-19 22:56:37 +0800
commit0a319196658562b65dcbbd0c18b3a2c18f9749e3 (patch)
treea69baff64abb6178b504c10821c2856e86eeabe2 /vcl
parent336801fb900bf2b541219d6690053b18e97011e9 (diff)
uitest: add DSL compiler support for more UI items
1) ButtonUIObject 2) CheckBoxUIObject 3) TabControlUIObject 4) ComboBoxUIObject 5) RadioButtonUIObject 6) ListBoxUIObject 7) SpinFieldUIObject 8) EditUIObject Change-Id: Ic81c2a0511351cf91f4514316b9c5854a64a4b05
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/uitest/uiobject.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 51e5e84a219f..d333dd01b256 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -1275,7 +1275,8 @@ OUString TabControlUIObject::get_action(VclEventId nEvent) const
{
sal_Int32 nPageId = mxTabControl->GetCurPageId();
return "Choose Tab number " + OUString::number(mxTabControl->GetPagePos(nPageId)) +
- " from '" + mxTabControl->get_id() + "'" ;
+ " in '" + mxTabControl->get_id()+
+ "' from " + get_top_parent(mxTabControl)->get_id() ;
}
else
return WindowUIObject::get_action(nEvent);