diff options
author | Ahmed ElShreif <aelshreif7@gmail.com> | 2019-08-04 13:42:09 -0500 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2019-08-19 22:56:39 +0800 |
commit | 99bedce928c33e8cb607f1d3f3c09feebaeb3c6b (patch) | |
tree | 47391dcb3f4a3bc1cd21f53e5e4375086082b546 /vcl/source/uitest | |
parent | d13252673b05942194971f83f6612c45848901fd (diff) |
uitest: log more events in Calc:
1) Rename Tab
2) Insert Tab
Change-Id: I7a653a4b274c0c8058672c5b0aa1645bb5a51e3a
Diffstat (limited to 'vcl/source/uitest')
-rw-r--r-- | vcl/source/uitest/logger.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/source/uitest/logger.cxx b/vcl/source/uitest/logger.cxx index 502c0a9f0244..36a6c7340add 100644 --- a/vcl/source/uitest/logger.cxx +++ b/vcl/source/uitest/logger.cxx @@ -369,6 +369,13 @@ void UITestLogger::logEvent(const EventDescription& rDescription) else if(rDescription.aAction=="UNMERGE_CELL"){ aLogLine = "Delete the merged " + aParameterString; } + else if(rDescription.aAction=="Rename_Sheet"){ + aLogLine = "Rename The Selected Tab to \""+\ + GetValueInMapWithIndex(rDescription.aParameters,0)+"\""; + } + else if(rDescription.aAction=="InsertTab"){ + aLogLine = "Insert New Tab "; + } } else if(rDescription.aID=="impress_win_or_draw_win"){ if(rDescription.aAction=="Insert_New_Page_or_Slide"){ |