summaryrefslogtreecommitdiff
path: root/svtools/source/contnr
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-03 02:38:11 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:01:55 +0200
commitae9dc22955e5b83cb2671c21d9bfea7dd3b389b5 (patch)
treeafa82d18e406419fad94677a93ac9ae0cd150177 /svtools/source/contnr
parent65ce002f4ff1559d836c1af2749963031fdc4efe (diff)
uitest: add initial version of wrapper for tree list box
The tree list will also be the first case where we need non-vcl::Window based children. We should create one child for each entry to make it possible to interact with them correctly. Change-Id: I49e1ddf7b271946fd595ebfe2f4f2d0c8a535fdc
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r--svtools/source/contnr/treelistbox.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx
index 6021d6b1ea3e..b0e1333d000a 100644
--- a/svtools/source/contnr/treelistbox.cxx
+++ b/svtools/source/contnr/treelistbox.cxx
@@ -40,6 +40,7 @@
#include <svtools/treelistentry.hxx>
#include <svtools/viewdataentry.hxx>
#include "svimpbox.hxx"
+#include "uitest/uiobject.hxx"
#include <set>
#include <string.h>
@@ -3828,4 +3829,9 @@ bool SvTreeListBox::set_property(const OString &rKey, const OString &rValue)
return true;
}
+FactoryFunction SvTreeListBox::GetUITestFactory() const
+{
+ return TreeListUIObject::create;
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */