Index: source/backends/gconfbe/gconfbecdef.cxx =================================================================== RCS file: /cvs/gsl/shell/source/backends/gconfbe/gconfbecdef.cxx,v retrieving revision 1.7 retrieving revision 1.7.6.1 diff -u -r1.7 -r1.7.6.1 --- source/backends/gconfbe/gconfbecdef.cxx 19 Jun 2006 14:16:03 -0000 1.7 +++ source/backends/gconfbe/gconfbecdef.cxx 30 Jun 2006 12:31:43 -0000 1.7.6.1 @@ -55,7 +55,7 @@ #include "uno/current_context.hxx" #include -#include +#include "orbit.h" namespace css = com::sun::star ; namespace uno = css::uno ; Index: source/backends/gconfbe/gconflayer.cxx =================================================================== RCS file: /cvs/gsl/shell/source/backends/gconfbe/gconflayer.cxx,v retrieving revision 1.7 retrieving revision 1.7.6.1 diff -u -r1.7 -r1.7.6.1 --- source/backends/gconfbe/gconflayer.cxx 19 Jun 2006 14:16:15 -0000 1.7 +++ source/backends/gconfbe/gconflayer.cxx 30 Jun 2006 12:31:43 -0000 1.7.6.1 @@ -128,7 +128,7 @@ case SETTING_DISABLE_PRINTING: #endif // ENABLE_LOCKDOWN { - sal_Bool bBooleanValue; + sal_Bool bBooleanValue = false; uno::Any aOriginalValue = makeAnyOfGconfValue( aGconfValue ); aOriginalValue >>= bBooleanValue; return uno::makeAny( rtl::OUString::valueOf( (sal_Bool) bBooleanValue ) ); Index: source/backends/gconfbe/orbit.h =================================================================== RCS file: source/backends/gconfbe/orbit.h diff -N source/backends/gconfbe/orbit.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ source/backends/gconfbe/orbit.h 30 Jun 2006 12:31:43 -0000 1.1.2.1 @@ -0,0 +1,49 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2006 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 + * + ************************************************************************/ + +#ifndef INCLUDED_SHELL_SOURCE_BACKENDS_GCONFBE_ORBIT_H +#define INCLUDED_SHELL_SOURCE_BACKENDS_GCONFBE_ORBIT_H + +#ifndef _SAL_CONFIG_H_ +#include "sal/config.h" +#endif + +#if defined __GNUC__ +#pragma GCC system_header +#endif + +#include + +#endif