summaryrefslogtreecommitdiff
path: root/cui/source/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-30 13:08:11 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-30 17:45:22 +0200
commitf356fbd7585ab2a41bcc6554a65b8a51588d0469 (patch)
tree21d2cdd4599462fd27ec748a14350aed7a362510 /cui/source/inc
parentaf20b49acb34694febf2a3ba79207b25a70a68cd (diff)
drop newly unused SvxRadioButtonListBox
Change-Id: Idb80fa73fad6e4bb2a1eaa3d55d7fe90e86c8965 Reviewed-on: https://gerrit.libreoffice.org/76605 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r--cui/source/inc/radiobtnbox.hxx53
1 files changed, 0 insertions, 53 deletions
diff --git a/cui/source/inc/radiobtnbox.hxx b/cui/source/inc/radiobtnbox.hxx
deleted file mode 100644
index b9af0af621a0..000000000000
--- a/cui/source/inc/radiobtnbox.hxx
+++ /dev/null
@@ -1,53 +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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef INCLUDED_CUI_SOURCE_INC_RADIOBTNBOX_HXX
-#define INCLUDED_CUI_SOURCE_INC_RADIOBTNBOX_HXX
-
-#include <svtools/simptabl.hxx>
-
-namespace svx {
-
-// class SvxRadioButtonListBox -------------------------------------------
-
-class SvxRadioButtonListBox : public SvSimpleTable
-{
- using SvSimpleTable::SetTabs;
-
-private:
- Point m_aCurMousePoint;
-
-protected:
- virtual void MouseButtonUp( const MouseEvent& _rMEvt ) override;
- virtual void KeyInput( const KeyEvent& rKEvt ) override;
-
-public:
- SvxRadioButtonListBox(SvSimpleTableContainer& rParent, WinBits nBits);
-
- void HandleEntryChecked( SvTreeListEntry* _pEntry );
-
- const Point& GetCurMousePoint() const { return m_aCurMousePoint;}
-
- long GetControlColumnWidth() const;
-};
-
-} // end of namespace ::svx
-
-#endif // INCLUDED_CUI_SOURCE_INC_RADIOBTNBOX_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */