diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2021-04-02 13:23:46 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2021-04-12 08:39:47 +0200 |
commit | 58dcf2a88af215df4e912f0cfcb32908c6a298a0 (patch) | |
tree | eeb26453c61e050d1b6414881a3677cb472e8330 /vcl | |
parent | f9fae84cbd9663d6a394aa8e4e4b927c11384815 (diff) |
tdf#132869 - Show the error message in a tooltip
In the define name dialog, the input itself should show the error
message in a tooltip. In addition, the possibility to test the tooltip
text in python was added.
Change-Id: I9bd7d2b2be8300aa366971f8a1f115e8ae19fb98
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113513
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'vcl')
-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 fc72053074c6..4d8390e212a2 100644 --- a/vcl/source/uitest/uiobject.cxx +++ b/vcl/source/uitest/uiobject.cxx @@ -785,6 +785,7 @@ StringMap EditUIObject::get_state() { StringMap aMap = WindowUIObject::get_state(); aMap["MaxTextLength"] = OUString::number(mxEdit->GetMaxTextLen()); + aMap["QuickHelpText"] = mxEdit->GetQuickHelpText(); aMap["SelectedText"] = mxEdit->GetSelected(); aMap["Text"] = mxEdit->GetText(); |