Fixed: Typo in XContentAccess::queryContentIdentifierString() - the

second 'i' was missing ( SUPD>611 ).
This commit is contained in:
Kai Sommerfeld 2000-10-31 08:52:18 +00:00
parent 936c94193b
commit 9540270ce6
3 changed files with 18 additions and 6 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: resultset.hxx,v $
*
* $Revision: 1.1.1.1 $
* $Revision: 1.2 $
*
* last change: $Author: hr $ $Date: 2000-09-18 17:03:37 $
* last change: $Author: kso $ $Date: 2000-10-31 09:50:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -180,7 +180,11 @@ public:
// XContentAccess
virtual rtl::OUString SAL_CALL
#if SUPD>611
queryContentIdentifierString()
#else
queryContentIdentfierString()
#endif
throw( com::sun::star::uno::RuntimeException );
virtual com::sun::star::uno::Reference<
com::sun::star::ucb::XContentIdentifier > SAL_CALL

View file

@ -2,9 +2,9 @@
*
* $RCSfile: resultset.cxx,v $
*
* $Revision: 1.1.1.1 $
* $Revision: 1.2 $
*
* last change: $Author: hr $ $Date: 2000-09-18 17:03:37 $
* last change: $Author: kso $ $Date: 2000-10-31 09:51:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -1312,7 +1312,11 @@ void SAL_CALL ResultSet::close()
//=========================================================================
// virtual
#if SUP>611
OUString SAL_CALL ResultSet::queryContentIdentifierString()
#else
OUString SAL_CALL ResultSet::queryContentIdentfierString()
#endif
throw( RuntimeException )
{
if ( m_pImpl->m_nPos && !m_pImpl->m_bAfterLast )

View file

@ -2,9 +2,9 @@
*
* $RCSfile: ucbexplorer.cxx,v $
*
* $Revision: 1.1.1.1 $
* $Revision: 1.2 $
*
* last change: $Author: hr $ $Date: 2000-09-18 17:03:38 $
* last change: $Author: kso $ $Date: 2000-10-31 09:52:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -687,7 +687,11 @@ void UcbExplorerTreeListBox::RequestingChilds( SvLBoxEntry* pParent )
Application::AcquireSolarMutex( n );
InsertEntry(
#if SUPD>611
xContentAccess->queryContentIdentifierString(),
#else
xContentAccess->queryContentIdentfierString(),
#endif
pParent );
n = Application::ReleaseSolarMutex();