summaryrefslogtreecommitdiff
path: root/connectivity/source/parse/sqliterator.cxx
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2014-09-26 16:26:22 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2014-09-26 16:27:53 +0200
commit325ce86b56131f1e874e8cb2c5948fed719afe07 (patch)
treedf02290e7b87ed763949f191ba102d472af0acbc /connectivity/source/parse/sqliterator.cxx
parentb37a88c3080fc72f5f0ff9068bc71098be70ed11 (diff)
fix build & better name for ERROR_INVALID_TABLE
Change-Id: Ic7253575859766f18869159e4a8dd6b3d715850d
Diffstat (limited to 'connectivity/source/parse/sqliterator.cxx')
-rw-r--r--connectivity/source/parse/sqliterator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/parse/sqliterator.cxx b/connectivity/source/parse/sqliterator.cxx
index 99cb3416a897..d8fd80118be6 100644
--- a/connectivity/source/parse/sqliterator.cxx
+++ b/connectivity/source/parse/sqliterator.cxx
@@ -416,13 +416,13 @@ OSQLTable OSQLParseTreeIterator::impl_locateRecordSource( const OUString& _rComp
// m_xQueryContainer would not have been set), so emit a better error message
impl_appendError( IParseContext::ERROR_INVALID_TABLE_OR_QUERY, &sName );
else
- impl_appendError( IParseContext::ERROR_INVALID_TABLE1, &sName );
+ impl_appendError( IParseContext::ERROR_INVALID_NOSUCH, &sName );
}
}
}
catch(Exception&)
{
- impl_appendError( IParseContext::ERROR_INVALID_TABLE1, &sComposedName );
+ impl_appendError( IParseContext::ERROR_INVALID_TABLE_NOSUCH, &sComposedName );
}
return aReturn;