#86171# right uno includes

This commit is contained in:
Andreas Schlüns 2001-05-21 05:13:00 +00:00
parent 59ae454c01
commit 9bf77392a6
8 changed files with 50 additions and 50 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: checkediterator.hxx,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: as $ $Date: 2001-04-11 11:24:11 $
* last change: $Author: as $ $Date: 2001-05-21 06:10:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -162,22 +162,22 @@ class CheckedIterator
@seealso -
@param "pContainer", must be a valid pointer to an existing container.
@param "rContainer", must be a valid reference to an existing container.
@return -
@onerror An assertion is thrown.
*//*-*****************************************************************************************************/
inline void initialize( const TContainer* pContainer, sal_Bool bReverse = sal_False )
inline void initialize( const TContainer& rContainer, sal_Bool bReverse = sal_False )
{
// Check incoming parameter. We don't accept all!
LOG_ASSERT2( pContainer ==NULL , "CheckedIterator::initialize()", "Invalid parameter detected!" )
LOG_ASSERT2( &rContainer==NULL , "CheckedIterator::initialize()", "Invalid parameter detected!" )
LOG_ASSERT2( m_eEndState!=E_UNKNOWN , "CheckedIterator::initialize()", "Instance already initialized! Don't do it again." )
if( m_eEndState == E_UNKNOWN )
{
// Set new container and actualize other member.
m_pContainer = pContainer ;
m_pContainer = &rContainer ;
m_bReverse = bReverse ;
m_eEndState = E_BEFOREEND ;
m_nForward = 0 ;

View file

@ -2,9 +2,9 @@
*
* $RCSfile: framecontainer.hxx,v $
*
* $Revision: 1.11 $
* $Revision: 1.12 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:40:03 $
* last change: $Author: as $ $Date: 2001-05-21 06:11:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -102,8 +102,8 @@
// other includes
//_________________________________________________________________________________________________________________
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef __SGI_STL_VECTOR

View file

@ -2,9 +2,9 @@
*
* $RCSfile: taskcreator.hxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:41:00 $
* last change: $Author: as $ $Date: 2001-05-21 06:11:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -98,8 +98,8 @@
// other includes
//_________________________________________________________________________________________________________________
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _RTL_USTRING_

View file

@ -2,9 +2,9 @@
*
* $RCSfile: xinterface.hxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:41:54 $
* last change: $Author: as $ $Date: 2001-05-21 06:11:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -78,16 +78,16 @@
// other includes
//_________________________________________________________________________________________________________________
#ifndef _COM_SUN_STAR_UNO_ANY_H_
#include <com/sun/star/uno/Any.h>
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
#include <com/sun/star/uno/Any.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_TYPE_H_
#include <com/sun/star/uno/Type.h>
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
#include <com/sun/star/uno/Type.hxx>
#endif
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_

View file

@ -2,9 +2,9 @@
*
* $RCSfile: xserviceinfo.hxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:42:13 $
* last change: $Author: as $ $Date: 2001-05-21 06:12:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -90,20 +90,20 @@
// other includes
//_________________________________________________________________________________________________________________
#ifndef _COM_SUN_STAR_UNO_ANY_H_
#include <com/sun/star/uno/Any.h>
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
#include <com/sun/star/uno/Any.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_H_
#include <com/sun/star/uno/Sequence.h>
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
#include <com/sun/star/uno/Sequence.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_TYPE_H_
#include <com/sun/star/uno/Type.h>
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
#include <com/sun/star/uno/Type.hxx>
#endif
#ifndef _CPPUHELPER_FACTORY_HXX_

View file

@ -2,9 +2,9 @@
*
* $RCSfile: xtypeprovider.hxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:42:27 $
* last change: $Author: as $ $Date: 2001-05-21 06:12:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -82,20 +82,20 @@
// other includes
//_________________________________________________________________________________________________________________
#ifndef _COM_SUN_STAR_UNO_ANY_H_
#include <com/sun/star/uno/Any.h>
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
#include <com/sun/star/uno/Any.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_H_
#include <com/sun/star/uno/Sequence.h>
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
#include <com/sun/star/uno/Sequence.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_TYPE_H_
#include <com/sun/star/uno/Type.h>
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
#include <com/sun/star/uno/Type.hxx>
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_

View file

@ -2,9 +2,9 @@
*
* $RCSfile: framework.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:43:13 $
* last change: $Author: as $ $Date: 2001-05-21 06:12:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -139,8 +139,8 @@
#include <comphelper/processfactory.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _RTL_USTRING_

View file

@ -2,9 +2,9 @@
*
* $RCSfile: login.cxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: as $ $Date: 2001-05-15 05:43:27 $
* last change: $Author: as $ $Date: 2001-05-21 06:13:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -107,8 +107,8 @@
#include <comphelper/processfactory.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _VOS_PROCESS_HXX_