summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-23 16:13:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-30 13:15:58 +0100
commit2fd7d760969d8eecc49672b3c8f4c58a5ea1bd4a (patch)
tree7a6997acf8ca64928ee542a29aabe626dbf71982 /include
parenta7d057acec0e871408d28c782dfed934df40f368 (diff)
SidebarDialControl is now unused
Change-Id: I949276018ed1867ce2a450c013c7fa41206fe68c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85765 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/sidebar/SidebarDialControl.hxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/svx/sidebar/SidebarDialControl.hxx b/include/svx/sidebar/SidebarDialControl.hxx
deleted file mode 100644
index e6c080e751c0..000000000000
--- a/include/svx/sidebar/SidebarDialControl.hxx
+++ /dev/null
@@ -1,44 +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_SVX_SIDEBAR_SIDEBARDIALCONTROL_HXX
-#define INCLUDED_SVX_SIDEBAR_SIDEBARDIALCONTROL_HXX
-
-#include <svx/dialcontrol.hxx>
-
-namespace svx { namespace sidebar {
-
-/** Provide some improvements over the standard DialControl.
-*/
-class SidebarDialControl final : public svx::DialControl
-{
-public:
- SidebarDialControl (vcl::Window* pParent, WinBits nBits);
-
- virtual Size GetOptimalSize() const override;
- virtual void MouseButtonDown (const MouseEvent& rMEvt) override;
-
-private:
- virtual void HandleMouseEvent (const Point& rPos, bool bInitial) override;
-};
-
-} } // end of namespace svx::sidebar
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */