summaryrefslogtreecommitdiff
path: root/ucb/source
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-22 12:56:08 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-22 12:56:08 +0000
commit72a9860aa47914c36510028cbe42713f70a72dcb (patch)
tree9024b04041a47986714deb9dd16e2a4ad5e00a74 /ucb/source
parent98d9cabf08a3ddd9d1dd6cac4a9b31a2bafd6076 (diff)
OSL_ENSHURE replaced by OSL_ENSHURE
Diffstat (limited to 'ucb/source')
-rw-r--r--ucb/source/sorter/sortresult.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/sorter/sortresult.cxx b/ucb/source/sorter/sortresult.cxx
index 52771a4aa567..4835f885b84e 100644
--- a/ucb/source/sorter/sortresult.cxx
+++ b/ucb/source/sorter/sortresult.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sortresult.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: dv $ $Date: 2001-02-14 08:42:00 $
+ * last change: $Author: jl $ $Date: 2001-03-22 13:56:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1501,7 +1501,7 @@ void SortedResultSet::Initialize(
nIndex++;
}
}
- catch ( SQLException ) { OSL_ENSHURE( sal_False, "SortedResultSet::Initialize() : Got unexpected SQLException" ); }
+ catch ( SQLException ) { OSL_ENSURE( sal_False, "SortedResultSet::Initialize() : Got unexpected SQLException" ); }
// when we have fetched all the elements, we can create the
// original to sorted mapping list from the s2o list
@@ -1856,7 +1856,7 @@ void SortedResultSet::ResortModified( EventList* pList )
}
}
}
- catch ( SQLException ) { OSL_ENSHURE( sal_False, "SortedResultSet::ResortModified() : Got unexpected SQLException" ); }
+ catch ( SQLException ) { OSL_ENSURE( sal_False, "SortedResultSet::ResortModified() : Got unexpected SQLException" ); }
maModList.Clear();
}
@@ -1889,7 +1889,7 @@ void SortedResultSet::ResortNew( EventList* pList )
pList->AddEvent( ListActionType::INSERTED, nNewPos, 1 );
}
}
- catch ( SQLException ) { OSL_ENSHURE( sal_False, "SortedResultSet::ResortNew() : Got unexpected SQLException" ); }
+ catch ( SQLException ) { OSL_ENSURE( sal_False, "SortedResultSet::ResortNew() : Got unexpected SQLException" ); }
}
//-------------------------------------------------------------------------