diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-02-27 09:43:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-02-27 11:05:42 +0000 |
commit | 450d195bb8c09866c6988a3b3ac82dbe349f7849 (patch) | |
tree | 4229ac61b82911d831c3c934546edddf9f30d11b /vcl | |
parent | a62cb6db8210771c487dd934158e01c3d2db77af (diff) |
UITest does not need to be a class
Change-Id: I0d9b67076abe0acc20406f594b1724a909504a1a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147866
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/uitest/uno/uitest_uno.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/vcl/source/uitest/uno/uitest_uno.cxx b/vcl/source/uitest/uno/uitest_uno.cxx index 9efbd3c3772d..9886b049a43a 100644 --- a/vcl/source/uitest/uno/uitest_uno.cxx +++ b/vcl/source/uitest/uno/uitest_uno.cxx @@ -29,9 +29,6 @@ namespace class UITestUnoObj : public UITestBase { -private: - std::unique_ptr<UITest> mpUITest; - public: UITestUnoObj(); @@ -56,8 +53,7 @@ public: } -UITestUnoObj::UITestUnoObj(): - mpUITest(new UITest) +UITestUnoObj::UITestUnoObj() { } |