diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-04-10 22:52:11 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-04-10 22:52:11 +0000 |
commit | d5085ec9f433c51e2b3c81d9bbf300bf31ae70aa (patch) | |
tree | 6f08285c0a24b3fb21ee2c72112bf18b32c84e48 /xmloff/source/transform | |
parent | faaeef34a5f2e47dc4de0b41b39d79082d4f3d7a (diff) |
INTEGRATION: CWS changefileheader (1.19.162); FILE MERGED
2008/04/01 16:10:17 thb 1.19.162.3: #i85898# Stripping all external header guards
2008/04/01 13:05:51 thb 1.19.162.2: #i85898# Stripping all external header guards
2008/03/31 16:28:53 rt 1.19.162.1: #i87441# Change license header to LPGL v3.
Diffstat (limited to 'xmloff/source/transform')
-rw-r--r-- | xmloff/source/transform/StyleOOoTContext.cxx | 82 |
1 files changed, 19 insertions, 63 deletions
diff --git a/xmloff/source/transform/StyleOOoTContext.cxx b/xmloff/source/transform/StyleOOoTContext.cxx index 46225c84f7..544c05b56d 100644 --- a/xmloff/source/transform/StyleOOoTContext.cxx +++ b/xmloff/source/transform/StyleOOoTContext.cxx @@ -1,87 +1,50 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. * - * $RCSfile: StyleOOoTContext.cxx,v $ + * OpenOffice.org - a multi-platform office productivity suite * - * $Revision: 1.19 $ + * $RCSfile: StyleOOoTContext.cxx,v $ + * $Revision: 1.20 $ * - * last change: $Author: hr $ $Date: 2007-06-27 16:24:26 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * 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). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library 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 for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * 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. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_xmloff.hxx" - -#ifndef _COM_SUN_STAR_XML_SAX_SAXPARSEEXCEPTION_HPP_ #include <com/sun/star/xml/sax/SAXParseException.hpp> -#endif -#ifndef _COM_SUN_STAR_XML_SAX_SAXEXCEPTION_HPP_ #include <com/sun/star/xml/sax/SAXException.hpp> -#endif -#ifndef _COM_SUN_STAR_XML_SAX_XDOCUMENTHANDLER_HPP_ #include <com/sun/star/xml/sax/XDocumentHandler.hpp> -#endif -#ifndef _COM_SUN_STAR_XML_SAX_XATTRIBUTELIST_HPP_ #include <com/sun/star/xml/sax/XAttributeList.hpp> -#endif -#ifndef _XMLOFF_NMSPMAP_HXX #include <xmloff/nmspmap.hxx> -#endif -#ifndef _XMLOFF_XMLTOKEN_HXX #include <xmloff/xmltoken.hxx> -#endif -#ifndef _XMLOFF_XMLNMSPE_HXX #include "xmlnmspe.hxx" -#endif -#ifndef _XMLOFF_PROPTYPE_HXX #include "PropType.hxx" -#endif - -#ifndef _XMLOFF_DEEPTCONTEXT_HXX #include "DeepTContext.hxx" -#endif -#ifndef _XMLOFF_RENAMEELEMTCONTEXT_HXX #include "RenameElemTContext.hxx" -#endif -#ifndef _XMLOFF_PROCATTRTCONTEXT_HXX #include "ProcAttrTContext.hxx" -#endif -#ifndef _XMLOFF_ACTIONMAPTYPESOOO_HXX #include "ActionMapTypesOOo.hxx" -#endif -#ifndef _XMLOFF_MUTABLEATTRLIST_HXX #include "MutableAttrList.hxx" -#endif -#ifndef _XMLOFF_TRANSFORMERACTIONS_HXX #include "TransformerActions.hxx" -#endif -#ifndef _XMLOFF_PROPERTYACTIONSOOO_HXX #include "PropertyActionsOOo.hxx" -#endif #ifndef _XMLOFF_TRANSFORMERBASE_HXX #include "TransformerBase.hxx" #endif @@ -89,16 +52,9 @@ #ifndef _XMLOFF_STYLEOASISTCONTEXT_HXX #include "StyleOOoTContext.hxx" #endif - -#ifndef _XMLOFF_XMLUCONV_HXX #include <xmloff/xmluconv.hxx> -#endif -#ifndef _RTL_USTRBUF_HXX_ #include <rtl/ustrbuf.hxx> -#endif -#ifndef INCLUDED_RTL_MATH_HXX #include <rtl/math.hxx> -#endif using ::rtl::OUString; using namespace ::xmloff::token; |