summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOcke Janssen [oj] <Ocke.Janssen@sun.com>2010-02-10 13:09:56 +0100
committerOcke Janssen [oj] <Ocke.Janssen@sun.com>2010-02-10 13:09:56 +0100
commit0c2bd96304ff4b6a5d2d811ddac283709e105dda (patch)
treec7a63ac4ede4413a390fe5fb7005045b0d6d9391
parent02df552c45b05d00d656d4aaba73907469f5958e (diff)
dba33e: #i107717# some renaming and wording changed
-rw-r--r--dbaccess/source/core/api/View.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/core/api/View.cxx b/dbaccess/source/core/api/View.cxx
index 4d770c867817..fa528d203466 100644
--- a/dbaccess/source/core/api/View.cxx
+++ b/dbaccess/source/core/api/View.cxx
@@ -88,7 +88,7 @@ namespace dbaccess
{
Reference<XMultiServiceFactory> xFac(_rxConnection,UNO_QUERY_THROW);
static const ::rtl::OUString s_sViewAccess(RTL_CONSTASCII_USTRINGPARAM("ViewAccessServiceName"));
- m_XViewAccess.set(xFac->createInstance(lcl_getServiceNameForSetting(_rxConnection,s_sViewAccess)),UNO_QUERY);
+ m_xViewAccess.set(xFac->createInstance(lcl_getServiceNameForSetting(_rxConnection,s_sViewAccess)),UNO_QUERY);
}
catch(const Exception& )
{
@@ -107,7 +107,7 @@ namespace dbaccess
// -------------------------------------------------------------------------
Any SAL_CALL View::queryInterface( const Type & _rType ) throw(RuntimeException)
{
- if(_rType == getCppuType( (Reference<XAlterView>*)0) && !m_XViewAccess.is() )
+ if(_rType == getCppuType( (Reference<XAlterView>*)0) && !m_xViewAccess.is() )
return Any();
Any aReturn = View_Base::queryInterface( _rType );
if ( !aReturn.hasValue() )
@@ -127,7 +127,7 @@ namespace dbaccess
const Type* pEnd = pIter + aTypes.getLength();
for(;pIter != pEnd ;++pIter)
{
- if( (*pIter != aAlterType || m_XViewAccess.is()) )
+ if( (*pIter != aAlterType || m_xViewAccess.is()) )
aOwnTypes.push_back(*pIter);
}
@@ -138,18 +138,18 @@ namespace dbaccess
//--------------------------------------------------------------------
void SAL_CALL View::alterCommand( const ::rtl::OUString& _rNewCommand ) throw (SQLException, RuntimeException)
{
- OSL_ENSURE(m_XViewAccess.is(),"Illegal call to AlterView!");
- m_XViewAccess->alterCommand(this,_rNewCommand);
+ OSL_ENSURE(m_xViewAccess.is(),"Illegal call to AlterView!");
+ m_xViewAccess->alterCommand(this,_rNewCommand);
}
//--------------------------------------------------------------------
void SAL_CALL View::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
{
- if ( _nHandle == m_nCommandHandle && m_XViewAccess.is() )
+ if ( _nHandle == m_nCommandHandle && m_xViewAccess.is() )
{
// retrieve the very current command, don't rely on the base classes cached value
// (which we initialized empty, anyway)
- _rValue <<= m_XViewAccess->getCommand(const_cast<View*>(this));
+ _rValue <<= m_xViewAccess->getCommand(const_cast<View*>(this));
return;
}