rpms/openoffice.org/devel workspace-fpicker4.patch,1.1,1.2

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jun 2 10:37:01 UTC 2005


Author: caolanm

Update of /cvs/dist/rpms/openoffice.org/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv26996

Modified Files:
	workspace-fpicker4.patch 
Log Message:
drop removal parts of patch

workspace-fpicker4.patch:
 SalGtkFilePicker.cxx |  339 ++++++++++++++++++++++++++++++---------------------
 SalGtkFilePicker.hxx |   22 +--
 SalGtkPicker.cxx     |   17 +-
 SalGtkPicker.hxx     |    5 
 makefile.mk          |    2 
 5 files changed, 229 insertions(+), 156 deletions(-)

Index: workspace-fpicker4.patch
===================================================================
RCS file: /cvs/dist/rpms/openoffice.org/devel/workspace-fpicker4.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- workspace-fpicker4.patch	2 Jun 2005 10:21:29 -0000	1.1
+++ workspace-fpicker4.patch	2 Jun 2005 10:36:57 -0000	1.2
@@ -712,642 +712,6 @@
      gint runandwaitforresult();
  };
  
-Index: source/unx/gnome/asynceventnotifier.cxx
-===================================================================
-RCS file: source/unx/gnome/asynceventnotifier.cxx
-diff -N source/unx/gnome/asynceventnotifier.cxx
---- openoffice.org.orig/fpicker/source/unx/gnome/asynceventnotifier.cxx	18 Jan 2005 13:25:45 -0000	1.3
-+++ openoffice.org/fpicker//dev/null	1 Jan 1970 00:00:00 -0000
-@@ -1,244 +0,0 @@
--/*************************************************************************
-- *
-- *  $RCSfile$
-- *
-- *  $Revision$
-- *
-- *  last change: $Author$ $Date$
-- *
-- *  The Contents of this file are made available subject to the terms of
-- *  either of the following licenses
-- *
-- *         - GNU Lesser General Public License Version 2.1
-- *         - Sun Industry Standards Source License Version 1.1
-- *
-- *  Sun Microsystems Inc., October, 2000
-- *
-- *  GNU Lesser General Public License Version 2.1
-- *  =============================================
-- *  Copyright 2000 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
-- *
-- *
-- *  Sun Industry Standards Source License Version 1.1
-- *  =================================================
-- *  The contents of this file are subject to the Sun Industry Standards
-- *  Source License Version 1.1 (the "License"); You may not use this file
-- *  except in compliance with the License. You may obtain a copy of the
-- *  License at http://www.openoffice.org/license.html.
-- *
-- *  Software provided under this License is provided on an "AS IS" basis,
-- *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-- *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
-- *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
-- *  See the License for the specific provisions governing your rights and
-- *  obligations concerning the Software.
-- *
-- *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
-- *
-- *  Copyright: 2000 by Sun Microsystems, Inc.
-- *
-- *  All Rights Reserved.
-- *
-- *  Contributor(s): _______________________________________
-- *
-- *
-- ************************************************************************/
--
--//------------------------------------------------------------------------
--// includes
--//------------------------------------------------------------------------
--
--#ifndef _OSL_DIAGNOSE_H_
--#include <osl/diagnose.h>
--#endif
--
--#ifndef _ASYNCEVENTNOTIFIER_HXX_
--#include "asynceventnotifier.hxx"
--#endif
--
--#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
--#include <com/sun/star/uno/RuntimeException.hpp>
--#endif
--
--#ifndef _COM_SUN_STAR_UI_DIALOGS_XFILEPICKERLISTENER_HPP_
--#include <com/sun/star/ui/dialogs/XFilePickerListener.hpp>
--#endif
--
--#include <memory>
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--using namespace com::sun::star;
--using ::com::sun::star::ui::dialogs::XFilePickerListener;
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--SalGtkAsyncEventNotifier::SalGtkAsyncEventNotifier(cppu::OBroadcastHelper& rBroadcastHelper) :    
--	m_bRun(false)
--	, m_rBroadcastHelper(rBroadcastHelper)
--{    
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--SalGtkAsyncEventNotifier::~SalGtkAsyncEventNotifier()
--{
--	OSL_ENSURE(!isRunning(),"Thread not stopped, destroying this instance leads to desaster");
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--bool SAL_CALL SalGtkAsyncEventNotifier::startup(bool bCreateSuspended)
--{
--	osl::MutexGuard aGuard(m_aMutex);
--
--	// m_bRun may already be false because of a
--	// call to stop but the thread did not yet
--	// terminate so m_hEventNotifierThread is
--	// yet a valid thread handle that should 
--	// not be overwritten
--	if (!m_bRun)
--	{
--		if (bCreateSuspended)
--	        	m_bRun = createSuspended();
--		else
--			m_bRun = create();
--	}
--
--	OSL_POSTCOND(m_bRun, "Could not start event notifier!");
--
--	return m_bRun;
--}
--
--
--//------------------------------------------------
--//
--//------------------------------------------------
--void SAL_CALL SalGtkAsyncEventNotifier::shutdown()
--{
--	osl::ResettableMutexGuard aGuard(m_aMutex);
--	
--	OSL_PRECOND(m_bRun,"Event notifier does not run!");
--
--	m_bRun = false;
--	m_aExitCondition.reset();
--
--	m_aNotifyCondition.set();
--	
--	aGuard.clear();
--	m_aExitCondition.wait();
--
--	terminate();
--	join();
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--void SAL_CALL SalGtkAsyncEventNotifier::notifyEvent(CEventNotification* EventNotification)
--{
--	osl::MutexGuard aGuard(m_aMutex);
--
--	OSL_ENSURE(m_bRun,"Event notifier is not running!");
--
--	if (m_bRun)
--	{
--		m_EventList.push_back(EventNotification);
--		m_aNotifyCondition.set();
--	}
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--size_t SAL_CALL SalGtkAsyncEventNotifier::getEventListSize()
--{
--	osl::MutexGuard aGuard(m_aMutex);
--	return m_EventList.size();
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--CEventNotification* SAL_CALL SalGtkAsyncEventNotifier::getNextEventRecord()
--{
--	osl::MutexGuard aGuard(m_aMutex);
--	return m_EventList.front();
--}
--//------------------------------------------------
--//
--//------------------------------------------------
--
--void SAL_CALL SalGtkAsyncEventNotifier::removeNextEventRecord()
--{
--	osl::MutexGuard aGuard(m_aMutex);    
--	m_EventList.pop_front();	
--}
--
--//------------------------------------------------
--//
--//------------------------------------------------
--
--void SAL_CALL SalGtkAsyncEventNotifier::run() 
--{
--	while (m_bRun)
--	{       
--		m_aNotifyCondition.wait();
--
--		while (getEventListSize() > 0)
--		{
--			std::auto_ptr<CEventNotification> EventNotification(getNextEventRecord());
--			removeNextEventRecord();
--
--			::cppu::OInterfaceContainerHelper* pICHelper = 
--				m_rBroadcastHelper.getContainer(getCppuType(
--					(uno::Reference<XFilePickerListener>*)0));
--
--			if (pICHelper)
--			{
--				::cppu::OInterfaceIteratorHelper iter(*pICHelper);
--
--				while(iter.hasMoreElements())
--				{
--					try
--					{
--						EventNotification->notifyEventListener(iter.next());
--					}
--					catch(uno::RuntimeException&)
--					{
--					    OSL_ENSURE(sal_False,
--						"RuntimeException during event dispatching");
--					}
--				}
--			}
--		} // while(getEventListSize() > 0)
--		m_aNotifyCondition.reset();
--	} // while(m_bRun)
--	m_aExitCondition.set();
--}
-Index: source/unx/gnome/asynceventnotifier.hxx
-===================================================================
-RCS file: source/unx/gnome/asynceventnotifier.hxx
-diff -N source/unx/gnome/asynceventnotifier.hxx
---- openoffice.org.orig/fpicker/source/unx/gnome/asynceventnotifier.hxx	18 Jan 2005 13:26:00 -0000	1.3
-+++ openoffice.org/fpicker//dev/null	1 Jan 1970 00:00:00 -0000
-@@ -1,128 +0,0 @@
--/*************************************************************************
-- *
-- *  $RCSfile$
-- *
-- *  $Revision$
-- *
-- *  last change: $Author$ $Date$
-- *
-- *  The Contents of this file are made available subject to the terms of
-- *  either of the following licenses
-- *
-- *         - GNU Lesser General Public License Version 2.1
-- *         - Sun Industry Standards Source License Version 1.1
-- *
-- *  Sun Microsystems Inc., October, 2000
-- *
-- *  GNU Lesser General Public License Version 2.1
-- *  =============================================
-- *  Copyright 2000 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
-- *
-- *
-- *  Sun Industry Standards Source License Version 1.1
-- *  =================================================
-- *  The contents of this file are subject to the Sun Industry Standards
-- *  Source License Version 1.1 (the "License"); You may not use this file
-- *  except in compliance with the License. You may obtain a copy of the
-- *  License at http://www.openoffice.org/license.html.
-- *
-- *  Software provided under this License is provided on an "AS IS" basis,
-- *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-- *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
-- *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
-- *  See the License for the specific provisions governing your rights and
-- *  obligations concerning the Software.
-- *
-- *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
-- *
-- *  Copyright: 2000 by Sun Microsystems, Inc.
-- *
-- *  All Rights Reserved.
-- *
-- *  Contributor(s): _______________________________________
-- *
-- *
-- ************************************************************************/
--
--#ifndef _ASYNCEVENTNOTIFIER_HXX_
--#define _ASYNCEVENTNOTIFIER_HXX_
--
--//------------------------------------------------------------------------
--// includes
--//------------------------------------------------------------------------
--
--#ifndef _OSL_MUTEX_HXX_
--#include <osl/mutex.hxx>
--#endif
--
--#ifndef _OSL_CONDITN_HXX_
--#include <osl/conditn.hxx>
--#endif
--
--#ifndef _CPPUHELPER_INTERFACECONTAINER_H_
--#include <cppuhelper/interfacecontainer.h>
--#endif
--
--#include <list>
--#include <utility>
--
--#ifndef _EVENTNOTIFICATION_HXX_
--#include "eventnotification.hxx"
--#endif
--#ifndef _THREAD_HXX_
--#include <osl/thread.hxx>
--#endif
--
--//---------------------------------------------
--//
--//---------------------------------------------
--
--class SalGtkAsyncEventNotifier : public ::osl::Thread
--{
--public:
--	SalGtkAsyncEventNotifier(cppu::OBroadcastHelper& rBroadcastHelper);
--	~SalGtkAsyncEventNotifier();
--
--	bool SAL_CALL startup(bool bCreateSuspended = true);
--	void SAL_CALL shutdown();
--
--	// this class is responsible for the memory management of
--	// the CEventNotification instance
--	void SAL_CALL notifyEvent(CEventNotification* EventNotification);
--private:
--	void SAL_CALL run( );
--
--	bool			m_bRun;
--	osl::Mutex		m_aMutex;    
--	::osl::Condition	m_aExitCondition;
--	::osl::Condition	m_aNotifyCondition;
--
--	size_t              SAL_CALL getEventListSize();
--	CEventNotification* SAL_CALL getNextEventRecord();
--	void                SAL_CALL removeNextEventRecord();
--
--private:    
--    std::list<CEventNotification*>  m_EventList;
--    ::cppu::OBroadcastHelper&		m_rBroadcastHelper;		
--// prevent copy and assignment
--private:
--    SalGtkAsyncEventNotifier( const SalGtkAsyncEventNotifier& );
--    SalGtkAsyncEventNotifier& operator=( const SalGtkAsyncEventNotifier& );
--};
--
--#endif
-Index: source/unx/gnome/filepickereventnotification.cxx
-===================================================================
-RCS file: source/unx/gnome/filepickereventnotification.cxx
-diff -N source/unx/gnome/filepickereventnotification.cxx
---- openoffice.org.orig/fpicker/source/unx/gnome/filepickereventnotification.cxx	8 Sep 2004 17:09:33 -0000	1.2
-+++ openoffice.org/fpicker//dev/null	1 Jan 1970 00:00:00 -0000
-@@ -1,121 +0,0 @@
--/*************************************************************************
-- *
-- *  $RCSfile$
-- *
-- *  $Revision$
-- *
-- *  last change: $Author$ $Date$
-- *
-- *  The Contents of this file are made available subject to the terms of
-- *  either of the following licenses
-- *
-- *         - GNU Lesser General Public License Version 2.1
-- *         - Sun Industry Standards Source License Version 1.1
-- *
-- *  Sun Microsystems Inc., October, 2000
-- *
-- *  GNU Lesser General Public License Version 2.1
-- *  =============================================
-- *  Copyright 2000 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
-- *
-- *
-- *  Sun Industry Standards Source License Version 1.1
-- *  =================================================
-- *  The contents of this file are subject to the Sun Industry Standards
-- *  Source License Version 1.1 (the "License"); You may not use this file
-- *  except in compliance with the License. You may obtain a copy of the
-- *  License at http://www.openoffice.org/license.html.
-- *
-- *  Software provided under this License is provided on an "AS IS" basis,
-- *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-- *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
-- *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
-- *  See the License for the specific provisions governing your rights and
-- *  obligations concerning the Software.
-- *
-- *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
-- *
-- *  Copyright: 2000 by Sun Microsystems, Inc.
-- *
-- *  All Rights Reserved.
-- *
-- *  Contributor(s): _______________________________________
-- *
-- *
-- ************************************************************************/
--
--#ifndef _FILEPICKEREVENTNOTIFICATION_HXX_
--#include "filepickereventnotification.hxx"
--#endif
--
--#ifndef _SAL_TYPES_H_
--#include <sal/types.h>
--#endif
--
--//-----------------------------------
--// namespace directives
--//-----------------------------------
--
--using namespace com::sun::star::uno;
--using namespace com::sun::star::ui::dialogs;
--
--//-----------------------------------
--// A FilePicker event without 
--// parameter
--//-----------------------------------
--
--SalGtkFilePickerEventNotification::SalGtkFilePickerEventNotification(EventListenerMethod_t EventListenerMethod) : 
--	m_EventListenerMethod(EventListenerMethod)
--{
--}
--
--//----------------------------------
--//
--//----------------------------------
--
--void SAL_CALL SalGtkFilePickerEventNotification::notifyEventListener( Reference< XInterface > xListener )
--{
--	Reference<XFilePickerListener> xFilePickerListener(xListener,UNO_QUERY);
--	if (xFilePickerListener.is())
--		(xFilePickerListener.get()->*m_EventListenerMethod)();
--}
--
--
--//##################################################
--
--
--//----------------------------------
--// A FilePicker event with parameter
--//----------------------------------
--
--SalGtkFilePickerParamEventNotification::SalGtkFilePickerParamEventNotification(EventListenerMethod_t EventListenerMethod, const FilePickerEvent& FilePickerEvent) :
--	m_EventListenerMethod(EventListenerMethod),
--	m_FilePickerEvent(FilePickerEvent)
--{
--}
--
--//----------------------------------
--// A FilePicker event with parameter
--//----------------------------------
--
--void SAL_CALL SalGtkFilePickerParamEventNotification::notifyEventListener( Reference< XInterface > xListener )
--{
--	Reference<XFilePickerListener> xFilePickerListener(xListener,UNO_QUERY);
--	if (xFilePickerListener.is())
--		(xFilePickerListener.get()->*m_EventListenerMethod)(m_FilePickerEvent);
--}
-Index: source/unx/gnome/filepickereventnotification.hxx
-===================================================================
-RCS file: source/unx/gnome/filepickereventnotification.hxx
-diff -N source/unx/gnome/filepickereventnotification.hxx
---- openoffice.org.orig/fpicker/source/unx/gnome/filepickereventnotification.hxx	8 Sep 2004 17:09:45 -0000	1.2
-+++ openoffice.org/fpicker//dev/null	1 Jan 1970 00:00:00 -0000
-@@ -1,115 +0,0 @@
--/*************************************************************************
-- *
-- *  $RCSfile$
-- *
-- *  $Revision$
-- *
-- *  last change: $Author$ $Date$
-- *
-- *  The Contents of this file are made available subject to the terms of
-- *  either of the following licenses
-- *
-- *         - GNU Lesser General Public License Version 2.1
-- *         - Sun Industry Standards Source License Version 1.1
-- *
-- *  Sun Microsystems Inc., October, 2000
-- *
-- *  GNU Lesser General Public License Version 2.1
-- *  =============================================
-- *  Copyright 2000 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
-- *
-- *
-- *  Sun Industry Standards Source License Version 1.1
-- *  =================================================
-- *  The contents of this file are subject to the Sun Industry Standards
-- *  Source License Version 1.1 (the "License"); You may not use this file
-- *  except in compliance with the License. You may obtain a copy of the
-- *  License at http://www.openoffice.org/license.html.
-- *
-- *  Software provided under this License is provided on an "AS IS" basis,
-- *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-- *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
-- *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
-- *  See the License for the specific provisions governing your rights and
-- *  obligations concerning the Software.
-- *
-- *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
-- *
-- *  Copyright: 2000 by Sun Microsystems, Inc.
-- *
-- *  All Rights Reserved.
-- *
-- *  Contributor(s): _______________________________________
-- *
-- *
-- ************************************************************************/
--
--#ifndef _FILEPICKEREVENTNOTIFICATION_HXX_
--#define _FILEPICKEREVENTNOTIFICATION_HXX_
--
--#ifndef _EVENTNOTIFICATION_HXX_
--#include "eventnotification.hxx"
--#endif
--
--#ifndef _COM_SUN_STAR_UI_DIALOGS_XFILEPICKERLISTENER_HPP_
--#include <com/sun/star/ui/dialogs/XFilePickerListener.hpp>
--#endif
--
--#ifndef _COM_SUN_STAR_UI_DIALOGS_FILEPICKEREVENT_HPP_
--#include <com/sun/star/ui/dialogs/FilePickerEvent.hpp>
--#endif
--
--//-----------------------------------
--// A FilePicker event without 
--// parameter
--//-----------------------------------
--
--class SalGtkFilePickerEventNotification : public CEventNotification
--{
--public:
--	typedef void (SAL_CALL ::com::sun::star::ui::dialogs::XFilePickerListener::*EventListenerMethod_t)();
--
--public:
--	SalGtkFilePickerEventNotification(EventListenerMethod_t EventListenerMethod);
--
--	virtual void SAL_CALL notifyEventListener( com::sun::star::uno::Reference< com::sun::star::uno::XInterface > xListener );
--
--private:
--	EventListenerMethod_t m_EventListenerMethod;
--};
--
--//----------------------------------
--// A FilePicker event with parameter
--//----------------------------------
--
--class SalGtkFilePickerParamEventNotification : public CEventNotification
--{
--public:
--	typedef void (SAL_CALL ::com::sun::star::ui::dialogs::XFilePickerListener::*EventListenerMethod_t)(const ::com::sun::star::ui::dialogs::FilePickerEvent&);
--
--	SalGtkFilePickerParamEventNotification(EventListenerMethod_t EventListenerMethod, const ::com::sun::star::ui::dialogs::FilePickerEvent& FilePickerEvent);
--
--	virtual void SAL_CALL notifyEventListener( com::sun::star::uno::Reference< com::sun::star::uno::XInterface > xListener );
--
--private:
--	EventListenerMethod_t						 m_EventListenerMethod;
--	com::sun::star::ui::dialogs::FilePickerEvent m_FilePickerEvent;
--};
--
--
--#endif
 Index: source/unx/gnome/makefile.mk
 ===================================================================
 RCS file: /cvs/gsl/fpicker/source/unx/gnome/makefile.mk,v




More information about the fedora-cvs-commits mailing list