summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-02-15 19:50:57 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-02-16 15:52:00 +0100
commit294be3035aa16b07705d962b22c405c30b5866bc (patch)
treeb1555974ef9b6afcff8833ea28dda89e41af3498 /sfx2
parent0ae876595e9d9af44fc4d4bc948f8a42d8a27e8d (diff)
drop newly unused code
drop now unused ListBoxWrapper Change-Id: I19271de67269a9e23cf889a32910405cf3dc7a2a drop unused SingleControlWrapper Change-Id: I80bd639a9d64a1b35249c1c59c1c9d134ae6f1ca drop unused PosValueMapper Change-Id: I5e3d9ed48b5f544215ae82ba7899a62be4e59a25 drop unused ControlWrapperBase Change-Id: I1890f492604ac848775e8d4b0070a3189a719a18 drop now empty itemconnect.cxx Change-Id: I5374dbf91dbe715a563e7c694c9d96fb07d8f9c8 drop unnecessary controlwrapper.hxx Change-Id: Ide633f64ca2851aee4f29a7f86e09cb78043d388 Reviewed-on: https://gerrit.libreoffice.org/67887 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/Library_sfx.mk1
-rw-r--r--sfx2/source/dialog/itemconnect.cxx38
2 files changed, 0 insertions, 39 deletions
diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk
index 18cf9396794d..aefc85202685 100644
--- a/sfx2/Library_sfx.mk
+++ b/sfx2/Library_sfx.mk
@@ -169,7 +169,6 @@ $(eval $(call gb_Library_add_exception_objects,sfx,\
sfx2/source/dialog/documentfontsdialog \
sfx2/source/dialog/filedlghelper \
sfx2/source/dialog/filtergrouping \
- sfx2/source/dialog/itemconnect \
sfx2/source/dialog/infobar \
sfx2/source/dialog/inputdlg \
sfx2/source/dialog/mailmodel \
diff --git a/sfx2/source/dialog/itemconnect.cxx b/sfx2/source/dialog/itemconnect.cxx
deleted file mode 100644
index 3f1d3ab2b418..000000000000
--- a/sfx2/source/dialog/itemconnect.cxx
+++ /dev/null
@@ -1,38 +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 .
- */
-
-#include <svl/itempool.hxx>
-#include <sfx2/controlwrapper.hxx>
-#include <vector>
-#include <memory>
-
-namespace sfx {
-
-
-// Base control wrapper classes
-
-
-ControlWrapperBase::~ControlWrapperBase()
-{
-}
-
-
-} // namespace sfx
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */