View | Details | Raw Unified | Return to issue 66722
Collapse All | Expand All

(-)kdebe.orig/kdebecdef.cxx (-1 / +1 lines)
Lines 49-55 Link Here
49
#include <com/sun/star/uno/XComponentContext.hpp>
49
#include <com/sun/star/uno/XComponentContext.hpp>
50
#endif
50
#endif
51
51
52
#include <kapplication.h>
52
#include "kdewrapper.h"
53
53
54
#include "uno/current_context.hxx"
54
#include "uno/current_context.hxx"
55
55
(-)kdebe.orig/kdecommonlayer.cxx (-3 / +1 lines)
Lines 37-45 Link Here
37
#include "kdecommonlayer.hxx"
37
#include "kdecommonlayer.hxx"
38
#endif 
38
#endif 
39
39
40
#ifndef _KEMAILSETTINGS_H
40
#include "kdewrapper.h"
41
#include "kemailsettings.h"
42
#endif
43
41
44
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_PROPERTYINFO_HPP_
42
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_PROPERTYINFO_HPP_
45
#include <com/sun/star/configuration/backend/PropertyInfo.hpp>
43
#include <com/sun/star/configuration/backend/PropertyInfo.hpp>
(-)kdebe.orig/kdeinetlayer.cxx (-3 / +1 lines)
Lines 48-56 Link Here
48
#include <com/sun/star/uno/Sequence.hxx>
48
#include <com/sun/star/uno/Sequence.hxx>
49
#endif
49
#endif
50
50
51
#ifndef __kprotocolmanager_h__
51
#include "kdewrapper.h"
52
#include <kprotocolmanager.h>
53
#endif
54
52
55
#define COMMA      ','
53
#define COMMA      ','
56
#define SEMI_COLON ';'
54
#define SEMI_COLON ';'
(-)kdebe.orig/kdepathslayer.cxx (-3 / +1 lines)
Lines 37-45 Link Here
37
#include "kdepathslayer.hxx"
37
#include "kdepathslayer.hxx"
38
#endif 
38
#endif 
39
39
40
#ifndef _KGLOBALSETTINGS_H
40
#include "kdewrapper.h"
41
#include "kglobalsettings.h"
42
#endif
43
41
44
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_PROPERTYINFO_HPP_
42
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_PROPERTYINFO_HPP_
45
#include <com/sun/star/configuration/backend/PropertyInfo.hpp>
43
#include <com/sun/star/configuration/backend/PropertyInfo.hpp>
(-)kdebe.orig/kdevcllayer.cxx (-3 / +1 lines)
Lines 51-59 Link Here
51
#ifndef QGLOBAL_H
51
#ifndef QGLOBAL_H
52
#include "qglobal.h"
52
#include "qglobal.h"
53
#endif
53
#endif
54
#ifndef QACCESSIBLE_H
54
#include "kdewrapper.h"
55
#include "qaccessible.h"
56
#endif
57
55
58
//==============================================================================
56
//==============================================================================
59
57
(-)kdebe.orig/kdewrapper.h (+52 lines)
Line 0 Link Here
1
/*************************************************************************
2
 *
3
 *  OpenOffice.org - a multi-platform office productivity suite
4
 *
5
 *  $RCSfile: kdewrapper.h,v $
6
 *
7
 *  $Revision: 1.2 $
8
 *
9
 *  last change: $Author: kz $ $Date: 2006/07/06 14:32:09 $
10
 *
11
 *  The Contents of this file are made available subject to
12
 *  the terms of GNU Lesser General Public License Version 2.1.
13
 *
14
 *
15
 *    GNU Lesser General Public License Version 2.1
16
 *    =============================================
17
 *    Copyright 2006 by Sun Microsystems, Inc.
18
 *    901 San Antonio Road, Palo Alto, CA 94303, USA
19
 *
20
 *    This library is free software; you can redistribute it and/or
21
 *    modify it under the terms of the GNU Lesser General Public
22
 *    License version 2.1, as published by the Free Software Foundation.
23
 *
24
 *    This library is distributed in the hope that it will be useful,
25
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
26
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27
 *    Lesser General Public License for more details.
28
 *
29
 *    You should have received a copy of the GNU Lesser General Public
30
 *    License along with this library; if not, write to the Free Software
31
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32
 *    MA  02111-1307  USA
33
 *
34
 ************************************************************************/
35
36
#ifndef INCLUDED_SHELL_SOURCE_BACKENDS_KDEBE_KDEWRAPPER_H
37
#define INCLUDED_SHELL_SOURCE_BACKENDS_KDEBE_KDEWRAPPER_H
38
39
#if defined __GNUC__
40
#pragma GCC system_header
41
#endif
42
43
#include <kapplication.h>
44
#include "kemailsettings.h"
45
#include <kprotocolmanager.h>
46
#include "kglobalsettings.h"
47
48
#include "qaccessible.h"
49
50
51
52
#endif

Return to issue 66722