summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-12 09:47:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-12 11:43:50 +0000
commite939c272a092546de0793523146e80f7d032d5dd (patch)
tree9167dff5eabbaa0e67ffb3520a03479d4e99f0bb /xmloff/inc
parent9a46b626c5e8bfbc478fe765aaaee61d1e56d037 (diff)
remove unused VisAreaContext.[c|h]xx
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/xmloff/VisAreaContext.hxx67
1 files changed, 0 insertions, 67 deletions
diff --git a/xmloff/inc/xmloff/VisAreaContext.hxx b/xmloff/inc/xmloff/VisAreaContext.hxx
deleted file mode 100644
index 0f9e7bd1a956..000000000000
--- a/xmloff/inc/xmloff/VisAreaContext.hxx
+++ /dev/null
@@ -1,67 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef _XMLOFF_VISAREACONTEXT_HXX
-#define _XMLOFF_VISAREACONTEXT_HXX
-
-#include <xmloff/xmlictxt.hxx>
-
-class Rectangle;
-
-namespace com { namespace sun { namespace star { namespace awt {
- struct Rectangle;
-} } } }
-
-class XMLVisAreaContext : public SvXMLImportContext
-{
-public:
- // read all attributes and set the values in rRect
- XMLVisAreaContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const rtl::OUString& rLName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
- Rectangle& rRect,
- const sal_Int16 eMeasureUnit);
-
- virtual ~XMLVisAreaContext();
-
- virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
- const rtl::OUString& rLocalName,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::sax::XAttributeList>& xAttrList );
- virtual void EndElement();
-
-private:
- void process( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
- ::com::sun::star::awt::Rectangle& rRect,
- const sal_Int16 nMeasureUnit );
-
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */