diff options
author | Ahmed ElShreif <aelshreif7@gmail.com> | 2019-07-29 00:29:24 -0500 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2019-08-19 22:56:38 +0800 |
commit | 3c5fe9ae9f15fccecdd91b32c225c3cbd854eff0 (patch) | |
tree | 3c9c5243150820ff9ee8a4078c774e4239206de6 /vcl/source/uitest | |
parent | 00323f94615ac987123be8f83990028147656457 (diff) |
uitest: start logging draw events
Change-Id: I1b77b106db181a8cadc1ff0b2a5de6ad19fe6762
Diffstat (limited to 'vcl/source/uitest')
-rw-r--r-- | vcl/source/uitest/logger.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/source/uitest/logger.cxx b/vcl/source/uitest/logger.cxx index ab632fb35594..cf2cd8fcefe4 100644 --- a/vcl/source/uitest/logger.cxx +++ b/vcl/source/uitest/logger.cxx @@ -230,6 +230,9 @@ void UITestLogger::logKeyInput(VclPtr<vcl::Window> const & xUIElement, const Key else if(pUIObject->get_type()=="WindowUIObject" && rID=="math_edit"){ aContent = "Type on math " + aKeyCode ; } + else if(rID=="draw_win"){ + aContent = "Type on draw " + aKeyCode ; + } else{ aContent = "Type on '" + rID + "' " + aKeyCode + " from " + aParentID ; } |