diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-19 20:47:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-20 12:59:22 +0100 |
commit | f6947a9467a7b99793f7d649ebf9f212541bacc6 (patch) | |
tree | 097db2fd4ec5b7cdf55e2f30471509f92240ed98 /ucb | |
parent | 38ca8c25b7ba9295957c3ed17744ed45e406ec0e (diff) |
WaE: fix missing return
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchydata.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchydata.cxx b/ucb/source/ucp/hierarchy/hierarchydata.cxx index 82bd9e6df98d..a2248cfc3b3e 100644 --- a/ucb/source/ucp/hierarchy/hierarchydata.cxx +++ b/ucb/source/ucp/hierarchy/hierarchydata.cxx @@ -813,9 +813,8 @@ sal_Bool HierarchyEntry::move( OSL_ENSURE( sal_False, "HierarchyEntry::move - caught WrappedTargetException!" ); - return sal_False; } - + return sal_False; } //========================================================================= |