summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-30 15:37:25 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-31 06:28:41 +0000
commit3d7325898547c94826cfddc6852d400e84e2dda1 (patch)
tree894e0f527f0dc42f478b10d34cf95c94e6d74e83 /svtools
parentfafb2cf4de2eb2de46afab0738b7fd95663c0164 (diff)
loplugin:unusedmethods
Change-Id: Ifeb818227a960cab8fd2e8e7352468efbfe1232c Reviewed-on: https://gerrit.libreoffice.org/25668 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/Library_svt.mk1
-rw-r--r--svtools/source/misc/xwindowitem.cxx62
2 files changed, 0 insertions, 63 deletions
diff --git a/svtools/Library_svt.mk b/svtools/Library_svt.mk
index 27bea8da19e2..9bb7f0f36a72 100644
--- a/svtools/Library_svt.mk
+++ b/svtools/Library_svt.mk
@@ -195,7 +195,6 @@ $(eval $(call gb_Library_add_exception_objects,svt,\
svtools/source/misc/transfer \
svtools/source/misc/transfer2 \
svtools/source/misc/unitconv \
- svtools/source/misc/xwindowitem \
svtools/source/svhtml/htmlkywd \
svtools/source/svhtml/htmlout \
svtools/source/svhtml/htmlsupp \
diff --git a/svtools/source/misc/xwindowitem.cxx b/svtools/source/misc/xwindowitem.cxx
deleted file mode 100644
index 96ab3b4e8535..000000000000
--- a/svtools/source/misc/xwindowitem.cxx
+++ /dev/null
@@ -1,62 +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 <svtools/xwindowitem.hxx>
-
-#include <vcl/window.hxx>
-
-
-using namespace ::com::sun::star;
-
-
-XWindowItem::XWindowItem() :
- SfxPoolItem()
-{
-}
-
-
-XWindowItem::XWindowItem( const XWindowItem &rItem ) :
- SfxPoolItem( Which() ),
- m_xWin( rItem.m_xWin )
-{
-}
-
-
-XWindowItem::~XWindowItem()
-{
-}
-
-
-SfxPoolItem * XWindowItem::Clone( SfxItemPool* /*pPool*/ ) const
-{
- return new XWindowItem( *this );
-}
-
-
-bool XWindowItem::operator == ( const SfxPoolItem & rAttr ) const
-{
- DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" );
-
- const XWindowItem * pItem = dynamic_cast< const XWindowItem * >(&rAttr);
- return pItem && m_xWin == pItem->m_xWin;
-}
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */