diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 03:03:59 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 03:03:59 +0000 |
commit | 5efe026c25867772c7b554ff243d1a7f58c8538d (patch) | |
tree | 16e54107d4bf9679bf404a5eb78672a131dd2a9a /svx | |
parent | c86c1f0a247d3e5ec1a23a19a4d7dbf952b2e04f (diff) |
INTEGRATION: CWS changefileheader (1.59.36); FILE MERGED
2008/04/01 15:51:55 thb 1.59.36.3: #i85898# Stripping all external header guards
2008/04/01 12:50:19 thb 1.59.36.2: #i85898# Stripping all external header guards
2008/03/31 14:24:15 rt 1.59.36.1: #i87441# Change license header to LPGL v3.
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoshtxt.cxx | 91 |
1 files changed, 18 insertions, 73 deletions
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx index 3e50e1edb99d..8d17e4289966 100644 --- a/svx/source/unodraw/unoshtxt.cxx +++ b/svx/source/unodraw/unoshtxt.cxx @@ -1,119 +1,64 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: unoshtxt.cxx,v $ + * Copyright 2008 by Sun Microsystems, Inc. * - * $Revision: 1.59 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: rt $ $Date: 2008-03-12 10:13:29 $ + * $RCSfile: unoshtxt.cxx,v $ + * $Revision: 1.60 $ * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * 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. * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA + * 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). * - * 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_svx.hxx" - -#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_ #include <com/sun/star/uno/XInterface.hpp> -#endif - -#ifndef _SV_SVAPP_HXX #include <vcl/svapp.hxx> -#endif #include <svx/unoshtxt.hxx> #include <unoedhlp.hxx> - -#ifndef _SFXLSTNER_HXX //autogen #include <svtools/lstner.hxx> -#endif - -#ifndef _RTL_REF_HXX_ #include <rtl/ref.hxx> -#endif - -#ifndef _OSL_MUTEX_HXX_ #include <osl/mutex.hxx> -#endif - -#ifndef _SFXHINT_HXX //autogen #include <svtools/hint.hxx> -#endif -#ifndef _SFXSTYLE_HXX #include <svtools/style.hxx> -#endif -#ifndef _SVDMODEL_HXX //autogen #include <svx/svdmodel.hxx> -#endif -#ifndef _SVDOUTL_HXX //autogen #include <svx/svdoutl.hxx> -#endif -#ifndef _SVDOBJ_HXX #include <svx/svdobj.hxx> -#endif -#ifndef _SVDVIEW_HXX #include <svx/svdview.hxx> -#endif -#ifndef _SVDETC_HXX #include <svx/svdetc.hxx> -#endif -#ifndef _OUTLINER_HXX #include <svx/outliner.hxx> -#endif -#ifndef _SVX_UNOFOROU_HXX #include <svx/unoforou.hxx> -#endif -#ifndef _SVX_UNOVIWOU_HXX #include <svx/unoviwou.hxx> -#endif -#ifndef _OUTLOBJ_HXX #include <svx/outlobj.hxx> -#endif #include <svx/svdotext.hxx> #include <svx/svdpage.hxx> #include <svx/editeng.hxx> -#ifndef _EDITOBJ_HXX #include <svx/editobj.hxx> -#endif #include <svx/unotext.hxx> -#ifndef _COM_SUN_STAR_LINGUISTIC2_XLINGUSERVICEMANAGER_HPP_ #include <com/sun/star/linguistic2/XLinguServiceManager.hpp> -#endif -#ifndef _COMPHELPER_PROCESSFACTORY_HXX_ #include <comphelper/processfactory.hxx> -#endif - -#ifndef _VOS_MUTEX_HXX_ #include <vos/mutex.hxx> -#endif - -#ifndef _SDRPAINTWINDOW_HXX #include <sdrpaintwindow.hxx> -#endif using namespace ::osl; using namespace ::vos; |