diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-03-28 18:26:34 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:01:38 +0200 |
commit | c7eb0ea3810261579f2db2fc116e6a970659268b (patch) | |
tree | a26b018a97597a35fcdc462c0ed4cd0b2eb56356 /vcl | |
parent | 2cb3587ad1b91cf744e55459f18a93eb2428eb65 (diff) |
uitest: provide a few more properties in the state map
Change-Id: I0819a1bb2134d77852633e7a94bf94dadcdfdec0
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/uitest/uiobject.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx index 0abfb51020bc..a130f17c491a 100644 --- a/vcl/source/uitest/uiobject.cxx +++ b/vcl/source/uitest/uiobject.cxx @@ -161,6 +161,8 @@ StringMap WindowUIObject::get_state() aPos += aParentPos; } aMap["AbsPosition"] = to_string(aPos); + aMap["Text"] = mxWindow->GetText(); + aMap["DisplayText"] = mxWindow->GetDisplayText(); return aMap; } |