diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:43:51 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:43:51 +0000 |
commit | ad90b77bceabfac4572407540175cf4918a5447e (patch) | |
tree | af72fd4064eb3d42f2101e08a5a3a8542941ae83 /ucb | |
parent | d3c5f6a8417d714faf5044c8bfa5742a792d6de2 (diff) |
INTEGRATION: CWS pj65 (1.15.12); FILE MERGED
2006/10/31 13:59:39 pjanik 1.15.12.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/sorter/sortresult.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/sorter/sortresult.cxx b/ucb/source/sorter/sortresult.cxx index 9dda95447dc5..258acd884828 100644 --- a/ucb/source/sorter/sortresult.cxx +++ b/ucb/source/sorter/sortresult.cxx @@ -4,9 +4,9 @@ * * $RCSfile: sortresult.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: obo $ $Date: 2006-09-17 13:45:34 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:43:51 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -963,7 +963,7 @@ Any SAL_CALL SortedResultSet::getPropertyValue( const OUString& PropertyName ) } else if ( PropertyName.compareToAscii( "IsRowCountFinal" ) == 0 ) { - sal_uInt32 nOrgCount; + sal_uInt32 nOrgCount = 0; sal_Bool bOrgFinal = false; Any aOrgRet; |