diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-07-10 20:47:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-07-10 20:48:50 +0300 |
commit | d3a221df1a513642da16f1301db7734fc003a0c7 (patch) | |
tree | c795b4954901bfe5d92cea50c2bec4e811ee40e9 /dbaccess | |
parent | a0c50b739c79d41e8166e2dab862dca0d093e7c3 (diff) |
Fix error: reference to 'ErrorCondition' is ambiguous
Either 'connectivity::ErrorCondition' or
'com::sun::star::sdb::ErrorCondition'.
Change-Id: Ifeaa895497c8635b7801b2e79400634b11541373
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/browser/brwctrlr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx b/dbaccess/source/ui/browser/brwctrlr.cxx index e208d3e9b3bc..74112417c478 100644 --- a/dbaccess/source/ui/browser/brwctrlr.cxx +++ b/dbaccess/source/ui/browser/brwctrlr.cxx @@ -696,7 +696,7 @@ void SbaXDataBrowserController::onStartLoading( const Reference< XLoadable >& _r void SbaXDataBrowserController::impl_checkForCannotSelectUnfiltered( const SQLExceptionInfo& _rError ) { ::connectivity::SQLError aError( getORB() ); - ::connectivity::ErrorCode nErrorCode( aError.getErrorCode( ErrorCondition::DATA_CANNOT_SELECT_UNFILTERED ) ); + ::connectivity::ErrorCode nErrorCode( aError.getErrorCode( sdb::ErrorCondition::DATA_CANNOT_SELECT_UNFILTERED ) ); if ( ((const SQLException*)_rError)->ErrorCode == nErrorCode ) { m_bCannotSelectUnfiltered = true; |