summaryrefslogtreecommitdiffstats
path: root/dbaccess
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-07-10 20:47:32 +0300
committerTor Lillqvist <tml@iki.fi>2013-07-10 20:48:50 +0300
commitd3a221df1a513642da16f1301db7734fc003a0c7 (patch)
treec795b4954901bfe5d92cea50c2bec4e811ee40e9 /dbaccess
parentFurther fallout from the connectivity SQL parser changes (diff)
downloadcore-d3a221df1a513642da16f1301db7734fc003a0c7.tar.gz
core-d3a221df1a513642da16f1301db7734fc003a0c7.zip
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.cxx2
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;