summaryrefslogtreecommitdiff
path: root/svx/source/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-05-21 09:52:30 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-05-21 20:15:01 +0200
commit6124f6726a8f6da9088024fabac9c3ccc3dca08a (patch)
treefa7613dd74af68d406fbc61e5b036e4e6c68e157 /svx/source/inc
parentd37b1ca5f502454266ff5a75455d61776ee11bb4 (diff)
split out labelitemwindow
Change-Id: If5121b58538708a47783aee099bc426408989cbf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94636 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/labelitemwindow.hxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/svx/source/inc/labelitemwindow.hxx b/svx/source/inc/labelitemwindow.hxx
deleted file mode 100644
index 798369c10fa0..000000000000
--- a/svx/source/inc/labelitemwindow.hxx
+++ /dev/null
@@ -1,29 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
-/*
- * 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/.
- */
-
-#pragma once
-
-#include <svtools/InterimItemWindow.hxx>
-
-class LabelItemWindow final : public InterimItemWindow
-{
-private:
- std::unique_ptr<weld::Label> m_xLabel;
-
-public:
- LabelItemWindow(vcl::Window* pParent, const OUString& rLabel);
- void set_label(const OUString& rLabel);
- OUString get_label() const;
-
- void SetOptimalSize();
- virtual void dispose() override;
- virtual ~LabelItemWindow() override;
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */