Skip to content

Commit

Permalink
tdf#39593 use isUnoTunnelId in connectivity
Browse files Browse the repository at this point in the history
Change-Id: I458049e23e9fc1855cb4ba9519b9b940f170b024
Reviewed-on: https://gerrit.libreoffice.org/78732
Tested-by: Jenkins
Reviewed-by: Arkadiy Illarionov <qarkai@gmail.com>
  • Loading branch information
qarkai committed Sep 6, 2019
1 parent 6c5a9db commit 03747db
Show file tree
Hide file tree
Showing 25 changed files with 46 additions and 36 deletions.
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AColumn.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <cppuhelper/typeprovider.hxx>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <comphelper/extract.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/types.hxx>
#include <ado/ACatalog.hxx>

Expand Down Expand Up @@ -74,7 +75,7 @@ OAdoColumn::OAdoColumn(bool _bCase,OConnection* _pConnection)
}


Sequence< sal_Int8 > OAdoColumn::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoColumn::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -85,7 +86,7 @@ Sequence< sal_Int8 > OAdoColumn::getUnoTunnelImplementationId()

sal_Int64 OAdoColumn::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoColumn>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OColumn_ADO::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AConnection.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <com/sun/star/sdbc/TransactionIsolation.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <connectivity/dbexception.hxx>
#include <osl/file.hxx>
Expand Down Expand Up @@ -487,14 +488,14 @@ void OConnection::disposing()

sal_Int64 SAL_CALL OConnection::getSomething( const css::uno::Sequence< sal_Int8 >& rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OConnection>(rId)
?
reinterpret_cast< sal_Int64 >( this )
:
OConnection_BASE::getSomething(rId);
}

Sequence< sal_Int8 > OConnection::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OConnection::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/drivers/ado/ADriver.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Reference< XTablesSupplier > SAL_CALL ODriver::getDataDefinitionByConnection( co
Reference< css::lang::XUnoTunnel> xTunnel(connection,UNO_QUERY);
if(xTunnel.is())
{
OConnection* pSearchConnection = reinterpret_cast< OConnection* >( xTunnel->getSomething(OConnection::getUnoTunnelImplementationId()) );
OConnection* pSearchConnection = reinterpret_cast< OConnection* >( xTunnel->getSomething(OConnection::getUnoTunnelId()) );

auto foundConnection = std::any_of(m_xConnections.begin(), m_xConnections.end(),
[&pSearchConnection](const css::uno::WeakReferenceHelper& rxConnection) {
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AGroup.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <ado/AGroup.hxx>
#include <ado/AUsers.hxx>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
Expand Down Expand Up @@ -81,7 +82,7 @@ void OAdoGroup::refreshUsers()
m_pUsers.reset(new OUsers(m_pCatalog, m_aMutex, aVector, aUsers, isCaseSensitive()));
}

Sequence< sal_Int8 > OAdoGroup::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoGroup::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -92,7 +93,7 @@ Sequence< sal_Int8 > OAdoGroup::getUnoTunnelImplementationId()

sal_Int64 OAdoGroup::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoGroup>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OGroup_ADO::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AIndex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <cppuhelper/typeprovider.hxx>
#include <ado/AColumns.hxx>
#include <TConnection.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/types.hxx>

using namespace ::comphelper;
Expand Down Expand Up @@ -70,7 +71,7 @@ void OAdoIndex::refreshColumns()
}


Sequence< sal_Int8 > OAdoIndex::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoIndex::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -81,7 +82,7 @@ Sequence< sal_Int8 > OAdoIndex::getUnoTunnelImplementationId()

sal_Int64 OAdoIndex::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoIndex>(rId)
? reinterpret_cast< sal_Int64 >( this )
: sdbcx::OIndex::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AKey.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <ado/AKey.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <ado/AColumns.hxx>
#include <ado/AConnection.hxx>
Expand Down Expand Up @@ -66,7 +67,7 @@ void OAdoKey::refreshColumns()
m_pColumns.reset(new OColumns(*this, m_aMutex, aVector, aColumns, isCaseSensitive(), m_pConnection));
}

Sequence< sal_Int8 > OAdoKey::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoKey::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -77,7 +78,7 @@ Sequence< sal_Int8 > OAdoKey::getUnoTunnelImplementationId()

sal_Int64 OAdoKey::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoKey>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OKey_ADO::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/ATable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <ado/Awrapado.hxx>
#include <TConnection.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/types.hxx>

using namespace ::comphelper;
Expand Down Expand Up @@ -123,7 +124,7 @@ void OAdoTable::refreshIndexes()
m_xIndexes = new OIndexes(*this,m_aMutex,aVector,aIndexes,isCaseSensitive(),m_pCatalog->getConnection());
}

Sequence< sal_Int8 > OAdoTable::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoTable::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -134,7 +135,7 @@ Sequence< sal_Int8 > OAdoTable::getUnoTunnelImplementationId()

sal_Int64 OAdoTable::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoTable>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OTable_TYPEDEF::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AUser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <ado/AUser.hxx>
#include <ado/ACatalog.hxx>
#include <ado/AGroups.hxx>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
Expand Down Expand Up @@ -65,7 +66,7 @@ void OAdoUser::refreshGroups()
m_pGroups.reset(new OGroups(m_pCatalog, m_aMutex, aVector, aGroups, isCaseSensitive()));
}

Sequence< sal_Int8 > OAdoUser::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoUser::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -76,7 +77,7 @@ Sequence< sal_Int8 > OAdoUser::getUnoTunnelImplementationId()

sal_Int64 OAdoUser::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoUser>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OUser_TYPEDEF::getSomething(rId);
}
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/ado/AView.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <ado/adoimp.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <ado/Awrapado.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/types.hxx>
#include <TConnection.hxx>

Expand All @@ -40,7 +41,7 @@ OAdoView::OAdoView(bool _bCase,ADOView* _pView) : OView_ADO(_bCase,nullptr)
{
}

Sequence< sal_Int8 > OAdoView::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OAdoView::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -51,7 +52,7 @@ Sequence< sal_Int8 > OAdoView::getUnoTunnelImplementationId()

sal_Int64 OAdoView::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OAdoView>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OView_ADO::getSomething(rId);
}
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/drivers/dbase/DIndex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ void ODbaseIndex::CreateImpl()
if(xSet->last())
{
Reference< XUnoTunnel> xTunnel(xSet, UNO_QUERY_THROW);
ODbaseResultSet* pDbaseRes = reinterpret_cast< ODbaseResultSet* >( xTunnel->getSomething(ODbaseResultSet::getUnoTunnelImplementationId()) );
ODbaseResultSet* pDbaseRes = reinterpret_cast< ODbaseResultSet* >( xTunnel->getSomething(ODbaseResultSet::getUnoTunnelId()) );
assert(pDbaseRes); //"No dbase resultset found? What's going on here!
nRowsLeft = xSet->getRow();

Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/drivers/file/FDatabaseMetaData.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTablePrivileges(
Reference<XUnoTunnel> xTunnel(xTable,UNO_QUERY);
if(xTunnel.is())
{
OFileTable* pTable = reinterpret_cast< OFileTable* >( xTunnel->getSomething(OFileTable::getUnoTunnelImplementationId()) );
OFileTable* pTable = reinterpret_cast< OFileTable* >( xTunnel->getSomething(OFileTable::getUnoTunnelId()) );
if(pTable && !pTable->isReadOnly())
{
aRow[6] = ODatabaseMetaDataResultSet::getInsertValue();
Expand Down
7 changes: 4 additions & 3 deletions connectivity/source/drivers/file/FResultSet.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/container/XIndexAccess.hpp>
#include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <connectivity/dbconversion.hxx>
#include <connectivity/dbtools.hxx>
Expand Down Expand Up @@ -1387,7 +1388,7 @@ void OResultSet::OpenImpl()
m_nFilePos = 0;
}

Sequence< sal_Int8 > OResultSet::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OResultSet::getUnoTunnelId()
{
static ::cppu::OImplementationId implId;

Expand All @@ -1398,7 +1399,7 @@ Sequence< sal_Int8 > OResultSet::getUnoTunnelImplementationId()

sal_Int64 OResultSet::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OResultSet>(rId)
? reinterpret_cast< sal_Int64 >( this )
: 0;
}
Expand Down Expand Up @@ -1538,7 +1539,7 @@ Reference< css::beans::XPropertySetInfo > SAL_CALL OResultSet::getPropertySetInf
void OResultSet::doTableSpecials(const OSQLTable& _xTable)
{
Reference<css::lang::XUnoTunnel> xTunnel(_xTable, UNO_QUERY_THROW);
m_pTable = reinterpret_cast< OFileTable* >(xTunnel->getSomething(OFileTable::getUnoTunnelImplementationId()));
m_pTable = reinterpret_cast< OFileTable* >(xTunnel->getSomething(OFileTable::getUnoTunnelId()));
assert(m_pTable.is());
}

Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/drivers/file/FStatement.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ void OStatement_Base::construct(const OUString& sql)
Reference< css::lang::XUnoTunnel> xTunnel(rTabs.begin()->second,UNO_QUERY);
if(xTunnel.is())
{
m_pTable = reinterpret_cast<OFileTable*>(xTunnel->getSomething(OFileTable::getUnoTunnelImplementationId()));
m_pTable = reinterpret_cast<OFileTable*>(xTunnel->getSomething(OFileTable::getUnoTunnelId()));
}
OSL_ENSURE(m_pTable.is(),"No table!");
if ( m_pTable.is() )
Expand Down
5 changes: 3 additions & 2 deletions connectivity/source/drivers/file/FTable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <file/FColumns.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
Expand Down Expand Up @@ -120,7 +121,7 @@ void SAL_CALL OFileTable::disposing()
FileClose();
}

Sequence< sal_Int8 > OFileTable::getUnoTunnelImplementationId()
Sequence< sal_Int8 > OFileTable::getUnoTunnelId()
{
static ::cppu::OImplementationId s_Id;

Expand All @@ -131,7 +132,7 @@ Sequence< sal_Int8 > OFileTable::getUnoTunnelImplementationId()

sal_Int64 OFileTable::getSomething( const Sequence< sal_Int8 > & rId )
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return isUnoTunnelId<OFileTable>(rId)
? reinterpret_cast< sal_Int64 >( this )
: OTable_TYPEDEF::getSomething(rId);
}
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AColumn.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace connectivity
virtual void construct() override;
// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

WpADOColumn getColumnImpl() const;
};
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AConnection.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace connectivity

//XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();
// XServiceInfo
DECLARE_SERVICE_INFO();
// OComponentHelper
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AGroup.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace connectivity

// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

// XAuthorizable
virtual sal_Int32 SAL_CALL getPrivileges( const OUString& objName, sal_Int32 objType ) override;
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AIndex.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace connectivity
OAdoIndex(bool _bCase, OConnection* _pConnection);
// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

WpADOIndex getImpl() const { return m_aIndex;}
};
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AKey.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace connectivity

// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

WpADOKey getImpl() const { return m_aKey;}
// map the update/delete rules
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/ATable.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace connectivity
virtual css::uno::Reference< css::sdbc::XDatabaseMetaData> getMetaData() const override;
// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

// XRename
virtual void SAL_CALL rename( const OUString& newName ) override;
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AUser.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace connectivity

// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();
// XUser
virtual void SAL_CALL changePassword( const OUString& objPassword, const OUString& newPassword ) override;
// XAuthorizable
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/ado/AView.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace connectivity

// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();

WpADOView getImpl() const { return m_aView;}
};
Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/file/FResultSet.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ namespace connectivity
virtual sal_Int32 SAL_CALL findColumn( const OUString& columnName ) override;
// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();
//XEventlistener
virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;

Expand Down
2 changes: 1 addition & 1 deletion connectivity/source/inc/file/FTable.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ namespace connectivity
// m_pFileStream && !m_pFileStream->IsWritable(); }
// css::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
static css::uno::Sequence< sal_Int8 > getUnoTunnelId();


sal_Int32 getFilePos() const { return m_nFilePos; }
Expand Down
Loading

0 comments on commit 03747db

Please sign in to comment.