summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/dlg/queryorder.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2000-12-12 11:32:34 +0000
committerOcke Janssen <oj@openoffice.org>2000-12-12 11:32:34 +0000
commit181679897ce20867c06cf8a86aaef2d819868f44 (patch)
tree82007795ff4074e2ba2ebbd659d6ded9df904be8 /dbaccess/source/ui/dlg/queryorder.cxx
parent#80933# new dialog ids (diff)
downloadcore-181679897ce20867c06cf8a86aaef2d819868f44.tar.gz
core-181679897ce20867c06cf8a86aaef2d819868f44.zip
use of xub_Strlen instead of sal_Int32
Diffstat (limited to 'dbaccess/source/ui/dlg/queryorder.cxx')
-rw-r--r--dbaccess/source/ui/dlg/queryorder.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/queryorder.cxx b/dbaccess/source/ui/dlg/queryorder.cxx
index 195bde2a9f29..9dd81da1ffcc 100644
--- a/dbaccess/source/ui/dlg/queryorder.cxx
+++ b/dbaccess/source/ui/dlg/queryorder.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: queryorder.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: oj $ $Date: 2000-11-10 16:11:58 $
+ * last change: $Author: oj $ $Date: 2000-12-12 12:32:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -258,7 +258,7 @@ void DlgOrderCrit::SetOrderList( const String& _rOrderList )
{
String aOrder = _rOrderList.GetToken(i,',');
arrLbFields[i]->SelectEntry( aOrder.GetToken(0,' ') );
- sal_Int32 nAsc = (aOrder.GetTokenCount(' ') == 2) ? (aOrder.GetToken(1,' ').EqualsAscii("ASC") ? 1 : 0) : 1;
+ xub_StrLen nAsc = (aOrder.GetTokenCount(' ') == 2) ? (aOrder.GetToken(1,' ').EqualsAscii("ASC") ? 1 : 0) : 1;
arrLbValues[i]->SelectEntryPos( nAsc );
}