diff options
Diffstat (limited to 'vcl/source/window/toolbox2.cxx')
-rw-r--r-- | vcl/source/window/toolbox2.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx index 6ee94e7b0ae5..b15e97f14dcf 100644 --- a/vcl/source/window/toolbox2.cxx +++ b/vcl/source/window/toolbox2.cxx @@ -41,6 +41,8 @@ #include <unotools/confignode.hxx> #include <tools/json_writer.hxx> +#include <vcl/uitest/uiobject.hxx> + using namespace vcl; #define TB_SEP_SIZE 8 // Separator size @@ -350,6 +352,11 @@ void ToolBox::Highlight() CallEventListeners( VclEventId::ToolboxHighlight ); } +FactoryFunction ToolBox::GetUITestFactory() const +{ + return ToolBoxUIObject::create; +} + void ToolBox::Select() { VclPtr<vcl::Window> xWindow = this; |