os/textandloc/textrendering/numberformatting/src/NumberConversion.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include "NumberConversion.h"
sl@0
    20
#include "NumberConversionImp.h"
sl@0
    21
sl@0
    22
enum TNumConvPanic
sl@0
    23
	{
sl@0
    24
	ENumConvPanicInvalidDigitType = 1,
sl@0
    25
	};
sl@0
    26
sl@0
    27
#ifdef _DEBUG
sl@0
    28
LOCAL_D void Panic(TNumConvPanic aPanicCode)
sl@0
    29
//
sl@0
    30
// Panic the thread with NumberConversion as the category
sl@0
    31
//
sl@0
    32
	{
sl@0
    33
	_LIT(KPanicNumConv, "NumConv");
sl@0
    34
	User::Panic(KPanicNumConv, aPanicCode);
sl@0
    35
	}
sl@0
    36
#endif //_DEBUG
sl@0
    37
sl@0
    38
// TStandardDigitMatch
sl@0
    39
sl@0
    40
/**
sl@0
    41
Length required to format KMinTInt in the longest number format
sl@0
    42
@internalComponent
sl@0
    43
*/
sl@0
    44
const TInt KMaxLengthOfFormattedNumber = 11;
sl@0
    45
sl@0
    46
_LIT(KDefaultDigit,"0");
sl@0
    47
_LIT(KFormatIdentifier,"%");
sl@0
    48
sl@0
    49
TInt StandardDigitMatch::Match(const TDesC& aText, TInt& aLength,
sl@0
    50
	TDigitType& aDigitType, NumberConversion::TDigitMatchType aDigitMatchType)
sl@0
    51
	{
sl@0
    52
	TInt total = 0;
sl@0
    53
sl@0
    54
	aDigitType = EDigitTypeUnknown;
sl@0
    55
	TDigitType currentDigitType = EDigitTypeUnknown;
sl@0
    56
	aLength = 0;
sl@0
    57
	TInt textLength = aText.Length();
sl@0
    58
	while (aLength < textLength)
sl@0
    59
		{
sl@0
    60
		TChar currentChar = aText[aLength];
sl@0
    61
		currentDigitType = DigitType(currentChar);
sl@0
    62
		if (currentDigitType == EDigitTypeUnknown)
sl@0
    63
			{
sl@0
    64
			return total;
sl@0
    65
			}
sl@0
    66
		TInt digit = 0;
sl@0
    67
		TUint charValue = currentChar;
sl@0
    68
		digit = charValue - currentDigitType;
sl@0
    69
		if (aDigitType == EDigitTypeUnknown)
sl@0
    70
			{
sl@0
    71
			aDigitType = currentDigitType;
sl@0
    72
			}
sl@0
    73
		else
sl@0
    74
			{
sl@0
    75
			if (aDigitType != currentDigitType)
sl@0
    76
				{
sl@0
    77
				if (aDigitMatchType == NumberConversion::EMatchMultipleTypes)
sl@0
    78
					{
sl@0
    79
					aDigitType = EDigitTypeAllTypes;
sl@0
    80
					}
sl@0
    81
				else
sl@0
    82
					{
sl@0
    83
					return total;
sl@0
    84
					}
sl@0
    85
				}
sl@0
    86
			}
sl@0
    87
sl@0
    88
		total = (total * 10) + digit;
sl@0
    89
		aLength++;
sl@0
    90
		}
sl@0
    91
	return total;
sl@0
    92
	}
sl@0
    93
sl@0
    94
TInt StandardDigitMatch::LeadingZeros(const TDesC& aText)
sl@0
    95
	{
sl@0
    96
	//Function to find the number of leading zeros
sl@0
    97
	TInt textLength = aText.Length();
sl@0
    98
	TInt numOfLeadingZeros = 0;
sl@0
    99
	TInt currentLength = 0;
sl@0
   100
	TDigitType currentDigitType = EDigitTypeUnknown;
sl@0
   101
	TBool leadingZeros = ETrue;
sl@0
   102
sl@0
   103
	if (textLength == 1)
sl@0
   104
		return numOfLeadingZeros; // No leading number, if only one number.
sl@0
   105
	
sl@0
   106
	while(currentLength < textLength)
sl@0
   107
		{
sl@0
   108
		TChar currentChar = aText[currentLength];
sl@0
   109
		currentDigitType = DigitType(currentChar);
sl@0
   110
		if (currentDigitType == EDigitTypeUnknown)
sl@0
   111
			{
sl@0
   112
			return numOfLeadingZeros;
sl@0
   113
			}
sl@0
   114
		TInt digit = 0;
sl@0
   115
		TUint charValue = currentChar;
sl@0
   116
		digit = charValue - currentDigitType;
sl@0
   117
sl@0
   118
		if (digit!=0 && leadingZeros)
sl@0
   119
			leadingZeros=EFalse;
sl@0
   120
		if(leadingZeros)
sl@0
   121
			numOfLeadingZeros++;
sl@0
   122
		currentLength++;
sl@0
   123
		}
sl@0
   124
	return numOfLeadingZeros;
sl@0
   125
sl@0
   126
	}
sl@0
   127
sl@0
   128
TDigitType StandardDigitMatch::DigitType(TChar aChar)
sl@0
   129
	{
sl@0
   130
	if (aChar >= EDigitTypeWestern && aChar < EDigitTypeWestern+10)
sl@0
   131
		{
sl@0
   132
		return EDigitTypeWestern;
sl@0
   133
		}
sl@0
   134
	if (aChar >= EDigitTypeArabicIndic && aChar < EDigitTypeArabicIndic+10)
sl@0
   135
		{
sl@0
   136
		return EDigitTypeArabicIndic;
sl@0
   137
		}
sl@0
   138
	if (aChar >= EDigitTypeEasternArabicIndic
sl@0
   139
		&& aChar < EDigitTypeEasternArabicIndic+10)
sl@0
   140
		{
sl@0
   141
		return EDigitTypeEasternArabicIndic;
sl@0
   142
		}
sl@0
   143
	if (aChar >= EDigitTypeDevanagari && aChar < EDigitTypeDevanagari+10)
sl@0
   144
		{
sl@0
   145
		return EDigitTypeDevanagari;
sl@0
   146
		}
sl@0
   147
	if (aChar >= EDigitTypeBengali && aChar < EDigitTypeBengali+10)
sl@0
   148
		{
sl@0
   149
		return EDigitTypeBengali;
sl@0
   150
		}
sl@0
   151
	if (aChar >= EDigitTypeGurmukhi && aChar < EDigitTypeGurmukhi+10)
sl@0
   152
		{
sl@0
   153
		return EDigitTypeGurmukhi;
sl@0
   154
		}	
sl@0
   155
	if (aChar >= EDigitTypeGujarati && aChar < EDigitTypeGujarati+10)
sl@0
   156
		{
sl@0
   157
		return EDigitTypeGujarati;
sl@0
   158
		}
sl@0
   159
	if (aChar >= EDigitTypeOriya && aChar < EDigitTypeOriya+10)
sl@0
   160
		{
sl@0
   161
		return EDigitTypeOriya;
sl@0
   162
		}
sl@0
   163
	if (aChar >= EDigitTypeTamil && aChar < EDigitTypeTamil+10)
sl@0
   164
		{
sl@0
   165
		return EDigitTypeTamil;
sl@0
   166
		}
sl@0
   167
	if (aChar >= EDigitTypeTelugu && aChar < EDigitTypeTelugu+10)
sl@0
   168
		{
sl@0
   169
		return EDigitTypeTelugu;
sl@0
   170
		}
sl@0
   171
	if (aChar >= EDigitTypeKannada && aChar < EDigitTypeKannada+10)
sl@0
   172
		{
sl@0
   173
		return EDigitTypeKannada;
sl@0
   174
		}
sl@0
   175
	if (aChar >= EDigitTypeMalayalam && aChar < EDigitTypeMalayalam+10)
sl@0
   176
		{
sl@0
   177
		return EDigitTypeMalayalam;
sl@0
   178
		}
sl@0
   179
	if (aChar >= EDigitTypeThai && aChar < EDigitTypeThai+10)
sl@0
   180
		{
sl@0
   181
		return EDigitTypeThai;
sl@0
   182
		}
sl@0
   183
	if (aChar >= EDigitTypeLao && aChar < EDigitTypeLao+10)
sl@0
   184
		{
sl@0
   185
		return EDigitTypeLao;
sl@0
   186
		}
sl@0
   187
	if (aChar >= EDigitTypeTibetan && aChar < EDigitTypeTibetan+10)
sl@0
   188
		{
sl@0
   189
		return EDigitTypeTibetan;
sl@0
   190
		}
sl@0
   191
	if (aChar >= EDigitTypeTibetan && aChar < EDigitTypeTibetan+20)
sl@0
   192
		{
sl@0
   193
		return EDigitTypeTibetan;
sl@0
   194
		}
sl@0
   195
	if (aChar >= EDigitTypeMayanmar && aChar < EDigitTypeMayanmar+10)
sl@0
   196
		{
sl@0
   197
		return EDigitTypeMayanmar;
sl@0
   198
		}
sl@0
   199
	if (aChar >= EDigitTypeKhmer && aChar < EDigitTypeKhmer+10)
sl@0
   200
		{
sl@0
   201
		return EDigitTypeKhmer;
sl@0
   202
		}
sl@0
   203
	return EDigitTypeUnknown;
sl@0
   204
	}
sl@0
   205
sl@0
   206
void StandardDigitMatch::AppendFormat(TDes& aText, TInt aNumber,
sl@0
   207
	TDigitType aDigitType)
sl@0
   208
	{
sl@0
   209
	TInt base = aDigitType;
sl@0
   210
sl@0
   211
	if (base != EDigitTypeUnknown)
sl@0
   212
		{
sl@0
   213
		TInt length = aText.Length();
sl@0
   214
		TInt number = aNumber;
sl@0
   215
		TBuf<1> digitText(KDefaultDigit);
sl@0
   216
		do
sl@0
   217
			{
sl@0
   218
			digitText[0] = (TUint16)((number % 10) + base);
sl@0
   219
			aText.Insert(length, digitText);
sl@0
   220
			number /= 10;
sl@0
   221
			} while (number > 0);
sl@0
   222
		}
sl@0
   223
	}
sl@0
   224
sl@0
   225
TInt StandardDigitMatch::LengthOfFormattedNumber(TInt aNumber)
sl@0
   226
	{
sl@0
   227
	TInt length = 0;
sl@0
   228
	do
sl@0
   229
		{
sl@0
   230
		length++;
sl@0
   231
		aNumber /= 10;
sl@0
   232
		} while (aNumber > 0);
sl@0
   233
	return length;
sl@0
   234
	}
sl@0
   235
sl@0
   236
sl@0
   237
sl@0
   238
sl@0
   239
// NumberConversion
sl@0
   240
sl@0
   241
EXPORT_C TInt NumberConversion::ConvertFirstNumber(const TDesC& aText,
sl@0
   242
	TInt& aLength, TDigitType& aDigitType, TDigitMatchType aDigitMatchType)
sl@0
   243
/**
sl@0
   244
Converts the descriptor aText into an integer and returns it. Ignores any minus
sl@0
   245
signs: only non-negative numbers are returned.
sl@0
   246
sl@0
   247
@param aText Input text containing the integer to be converted.
sl@0
   248
@param aLength On exit aLength is set to the number of characters converted 
sl@0
   249
from the descriptor.
sl@0
   250
@param aDigitType Returns the digit type of the number converted. If no 
sl@0
   251
characters are matched, aDigitType will be set to EDigitTypeUnknown.
sl@0
   252
@param aDigitMatchType If aDigitMatchType is set to EMatchMultipleTypes, 
sl@0
   253
different number types in the descriptor are matched and returned as a single 
sl@0
   254
number. In this case, aDigitType will be set to EDigitTypeAllTypes.
sl@0
   255
@return The (non-negative) number found.
sl@0
   256
*/
sl@0
   257
	{
sl@0
   258
	return StandardDigitMatch::Match(aText, aLength, aDigitType, aDigitMatchType);
sl@0
   259
	}
sl@0
   260
sl@0
   261
EXPORT_C TInt NumberConversion::PositionAndTypeOfNextNumber(const TDesC& aText,
sl@0
   262
	TDigitType& aDigitType, TInt aStartFrom)
sl@0
   263
/**
sl@0
   264
Finds the position and type of the next number in the descriptor. If the number
sl@0
   265
has a preceeding minus sign, it will be ignored and the position of the first
sl@0
   266
digit will be returned.
sl@0
   267
sl@0
   268
@param aText Text to be searched.
sl@0
   269
@param aStartFrom First position within aText to be searched.
sl@0
   270
@param aDigitType aDigitType is set to the digit type matched. If the 
sl@0
   271
descriptor doesn't contain a recognisable digit, aDigitType is set to 
sl@0
   272
EDigitTypeUnknown.
sl@0
   273
@return The index of the first character.
sl@0
   274
*/
sl@0
   275
	{
sl@0
   276
	TInt index = aStartFrom;
sl@0
   277
	TInt length = aText.Length();
sl@0
   278
	while (index < length)
sl@0
   279
		{
sl@0
   280
		TChar currentChar(aText[index]);
sl@0
   281
		aDigitType = StandardDigitMatch::DigitType(currentChar);
sl@0
   282
		if (aDigitType != EDigitTypeUnknown)
sl@0
   283
			{
sl@0
   284
			return index;
sl@0
   285
			}
sl@0
   286
		index++;
sl@0
   287
		}
sl@0
   288
	return KErrNotFound;
sl@0
   289
	}
sl@0
   290
sl@0
   291
EXPORT_C void NumberConversion::FormatNumber(TDes& aText, TInt aNumber,
sl@0
   292
	TDigitType aDigitType)
sl@0
   293
/**
sl@0
   294
Converts a non-negative integer into localised text.
sl@0
   295
@param aText Output for the converted number. aText must be long enough to 
sl@0
   296
accommodate	the text or the descriptor will panic. Negative numbers are not 
sl@0
   297
supported.
sl@0
   298
@param aNumber The number to be converted.
sl@0
   299
@param aDigitType The type of digit to render the number in.
sl@0
   300
@pre NumberConversion::LengthOfFormattedNumber(aNumber, aDigitType) <= aText.MaxLength() && 0 <= aNumber
sl@0
   301
*/
sl@0
   302
	{
sl@0
   303
	aText.Zero();
sl@0
   304
	AppendFormatNumber(aText, aNumber, aDigitType);
sl@0
   305
	}
sl@0
   306
sl@0
   307
EXPORT_C void NumberConversion::FormatDigit(TDes& aText, TInt aNumber, TInt aLeadingZero,
sl@0
   308
	TDigitType aDigitType)
sl@0
   309
/**
sl@0
   310
Converts a non-negative integer into localised text.
sl@0
   311
sl@0
   312
@param aText Output for the converted number. aText must be long enough to 
sl@0
   313
accommodate	the text or the descriptor will panic. Negative numbers are not 
sl@0
   314
supported.
sl@0
   315
@param aNumber The number to be converted.
sl@0
   316
@param aDigitType The type of digit to render the number in.
sl@0
   317
@param aLeadingZero The number of zeros that appear before the number to be 
sl@0
   318
converted to localised text.
sl@0
   319
@pre NumberConversion::LengthOfFormattedNumber(aNumber, aDigitType) <= aText.MaxLength() && 0 <= aNumber
sl@0
   320
*/
sl@0
   321
	{
sl@0
   322
	aText.Zero();
sl@0
   323
	AppendFormatNumber(aText, aNumber, aDigitType);
sl@0
   324
	
sl@0
   325
	// Insert the zeros 
sl@0
   326
	if(aLeadingZero)
sl@0
   327
		{
sl@0
   328
		TChar zero = aDigitType;
sl@0
   329
		TBuf<1> zeroBuf;
sl@0
   330
		zeroBuf.Append(zero);
sl@0
   331
		for (TInt i=0; i<aLeadingZero; i++)
sl@0
   332
			{
sl@0
   333
			aText.Insert(0,zeroBuf);
sl@0
   334
			}
sl@0
   335
		}
sl@0
   336
	}
sl@0
   337
sl@0
   338
EXPORT_C void NumberConversion::AppendFormatNumber(TDes& aText, TInt aNumber,
sl@0
   339
	TDigitType aDigitType)
sl@0
   340
/**
sl@0
   341
Converts a non-negative integer into localised text, appending the result to a
sl@0
   342
descriptor.
sl@0
   343
sl@0
   344
@param aText Output for the converted number. aText must have enough free space 
sl@0
   345
after its current length to accommodate the text or the descriptor will panic.
sl@0
   346
Negative numbers are not supported.
sl@0
   347
@param aNumber The number to be converted.
sl@0
   348
@param aDigitType The type of digit to render the number in.
sl@0
   349
@pre NumberConversion::LengthOfFormattedNumber(aNumber, aDigitType) <= aText.MaxLength() - aText.Length() && 0 <= aNumber
sl@0
   350
*/
sl@0
   351
	{
sl@0
   352
	StandardDigitMatch::AppendFormat(aText, aNumber, aDigitType);
sl@0
   353
	}
sl@0
   354
sl@0
   355
EXPORT_C void NumberConversion::ConvertDigits(TDes& aText,
sl@0
   356
	TDigitType aDigitType)
sl@0
   357
/**
sl@0
   358
Converts all of the digits in the descriptor aText into the format specified in
sl@0
   359
aDigitType.
sl@0
   360
sl@0
   361
@param aText The text that is to have its digits converted.
sl@0
   362
@param aDigitType The digit type to be converted to.
sl@0
   363
@pre NumberConversion::LengthOfConvertedText(aText, aDigitType) <= aText.MaxLength()
sl@0
   364
@post All digits in the string will either conform to one of the constants
sl@0
   365
defined in enum TDigitType or will match the digit type
sl@0
   366
supplied in aDigitType.
sl@0
   367
*/
sl@0
   368
	{	
sl@0
   369
	TInt charValue;
sl@0
   370
	for (TInt i=0; i < aText.Length(); i++)
sl@0
   371
		{		
sl@0
   372
		if ( (charValue = static_cast<TChar>(aText[i]).GetNumericValue()) >= 0)	
sl@0
   373
			{					
sl@0
   374
			TBuf<1> convertedNumber;
sl@0
   375
			FormatNumber(convertedNumber, charValue, aDigitType);
sl@0
   376
			aText.Delete(i, 1);
sl@0
   377
			aText.Insert(i, convertedNumber);			
sl@0
   378
			}
sl@0
   379
		}
sl@0
   380
  }
sl@0
   381
sl@0
   382
EXPORT_C TInt NumberConversion::LengthOfFormattedNumber(TInt aNumber,
sl@0
   383
	TDigitType /*aDigitType*/)
sl@0
   384
/**
sl@0
   385
Returns the number of characters required to format aNumber into text.
sl@0
   386
@param aNumber The number to be converted.
sl@0
   387
@param aDigitType The format for the number.
sl@0
   388
@return The length of descriptor required to render the number as text.
sl@0
   389
*/
sl@0
   390
	{
sl@0
   391
	return StandardDigitMatch::LengthOfFormattedNumber(aNumber);
sl@0
   392
	}
sl@0
   393
sl@0
   394
EXPORT_C TInt NumberConversion::LengthOfConvertedText(const TDesC& aText,
sl@0
   395
	TDigitType aDigitType)
sl@0
   396
/**
sl@0
   397
Returns the length of the descriptor required to hold text with its digits
sl@0
   398
converted.
sl@0
   399
sl@0
   400
@param aText Input text for the conversion.
sl@0
   401
@param aDigitType The type of digit that will be used for the conversion.
sl@0
   402
@return	The length of descriptor that would be required to convert the digits 
sl@0
   403
in aText into the type specified by aDigitType.
sl@0
   404
*/
sl@0
   405
	{
sl@0
   406
	TDigitType digitType = EDigitTypeUnknown;
sl@0
   407
	TInt position = PositionAndTypeOfNextNumber(aText, digitType);
sl@0
   408
	TInt total = aText.Length();
sl@0
   409
	while (digitType != EDigitTypeUnknown)
sl@0
   410
		{
sl@0
   411
		// Convert this number into a different format
sl@0
   412
		TInt length = 0;
sl@0
   413
		TPtrC matchText = aText.Mid(position);
sl@0
   414
		TInt number = ConvertFirstNumber(matchText, length, digitType);
sl@0
   415
		total -= length;
sl@0
   416
		total += LengthOfFormattedNumber(number, aDigitType);
sl@0
   417
		position = PositionAndTypeOfNextNumber(aText, digitType,
sl@0
   418
			position + length);
sl@0
   419
		}
sl@0
   420
	return total;
sl@0
   421
	}
sl@0
   422
sl@0
   423
EXPORT_C void NumberConversion::Format(TDigitType aDigitType,
sl@0
   424
	TRefByValue<TDes> aFmt,...)
sl@0
   425
/**
sl@0
   426
Formats the descriptor. Format specifiers are converted to values passed in the
sl@0
   427
variable argument list. The following format specifiers are supported:
sl@0
   428
sl@0
   429
%d - Interprets the argument as a TInt and formats it using the aDigitType
sl@0
   430
format. Negative numbers are not supported.
sl@0
   431
sl@0
   432
%S - Interprets the argument as a pointer to a TDesC and inserts it into the
sl@0
   433
descriptor.
sl@0
   434
sl@0
   435
@param aDigitType The digit type for all %d directives.
sl@0
   436
*/
sl@0
   437
	{
sl@0
   438
	VA_LIST argument_list;
sl@0
   439
	VA_START(argument_list, aFmt);
sl@0
   440
sl@0
   441
	TDes& format = aFmt;
sl@0
   442
	TInt match = KErrNotFound;
sl@0
   443
	while ((match = format.Find(KFormatIdentifier)) != KErrNotFound)
sl@0
   444
		{
sl@0
   445
		TChar formatIdentifier = format[match+1];
sl@0
   446
		switch (formatIdentifier)
sl@0
   447
			{
sl@0
   448
			case 'd':
sl@0
   449
				{
sl@0
   450
				format.Delete(match,2);
sl@0
   451
				TInt number = VA_ARG(argument_list, int);
sl@0
   452
				TBuf<KMaxLengthOfFormattedNumber> convertedNumber;
sl@0
   453
				FormatNumber(convertedNumber, number, aDigitType);
sl@0
   454
				format.Insert(match, convertedNumber);
sl@0
   455
				}
sl@0
   456
				break;
sl@0
   457
			case 'S':
sl@0
   458
				{
sl@0
   459
				format.Delete(match,2);
sl@0
   460
				TDesC* des = VA_ARG(argument_list, TDesC*);
sl@0
   461
				format.Insert(match, *des);
sl@0
   462
				}
sl@0
   463
				break;
sl@0
   464
			default:
sl@0
   465
				// Remove format identifier
sl@0
   466
				format.Delete(match,1);
sl@0
   467
			};
sl@0
   468
		}
sl@0
   469
sl@0
   470
	VA_END(argument_list);
sl@0
   471
	}
sl@0
   472
sl@0
   473
EXPORT_C TChar NumberConversion::ConvertDigit(TChar& aDigit, TDigitType aDigitType)
sl@0
   474
/**
sl@0
   475
converts aDigit (which could be arabic, western digit etc) into the form 
sl@0
   476
denoted  by aDigitType.
sl@0
   477
sl@0
   478
@param TChar& aDigit - contains the digit to be converted.
sl@0
   479
@param TDigitType aDigitType - aDigit type: western, arabic, thai, ...
sl@0
   480
@return Digit into the form, denoted by aDigitType.
sl@0
   481
*/
sl@0
   482
	{
sl@0
   483
	__ASSERT_DEBUG(EDigitTypeUnknown != aDigitType && EDigitTypeAllTypes != aDigitType, 
sl@0
   484
					Panic(ENumConvPanicInvalidDigitType));
sl@0
   485
	TBuf<1> buf;
sl@0
   486
	buf.Append(aDigit);
sl@0
   487
	NumberConversion::ConvertDigits(buf, aDigitType);
sl@0
   488
	return buf[0];	
sl@0
   489
	}
sl@0
   490