diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-05 19:37:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-07 17:55:05 +0200 |
commit | aff306cdd05a7be14c6dd2a6826cc61d38463465 (patch) | |
tree | f64fff1e99941bd16886c6a4260ef06a3e4e0523 /svtools/inc | |
parent | c8467eb5b75ba7de19403f24b92907c77ce4f077 (diff) |
SvSimpleTableContainer is now unused
Change-Id: I7762d95290a0b35de4f909895a4e28b52c436ed9
Reviewed-on: https://gerrit.libreoffice.org/80307
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/uitest/uiobject.hxx | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/svtools/inc/uitest/uiobject.hxx b/svtools/inc/uitest/uiobject.hxx deleted file mode 100644 index c22e2e409346..000000000000 --- a/svtools/inc/uitest/uiobject.hxx +++ /dev/null @@ -1,32 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#include <memory> -#include <svtools/simptabl.hxx> -#include <vcl/uitest/uiobject.hxx> - -class SvSimpleTable; - -class SimpleTableUIObject : public TreeListUIObject -{ -public: - SimpleTableUIObject(const VclPtr<SvSimpleTable>& xTable); - - virtual StringMap get_state() override; - - static std::unique_ptr<UIObject> createFromContainer(vcl::Window* pWindow); - -protected: - virtual OUString get_type() const override; - -private: - VclPtr<SvSimpleTable> mxTable; -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |