summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-04-18 23:24:52 +0200
committerEike Rathke <erack@redhat.com>2013-04-18 23:43:18 +0200
commit29bfb507b39b84a788df66d91e23166a8cfa88f2 (patch)
tree4208863e1452cb5d39d24b3d69ef3504d8ca0d8c /basic
parentf1efc98b45fcf462a74b31790d4075f29cc0f8af (diff)
get rid of some Germanism (and some Windowsism)
Change-Id: I2ca1b34ff688a7d4fcf6c84c02035eda3ab0dee8
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/runtime.cxx14
-rw-r--r--basic/source/sbx/sbxdate.cxx12
2 files changed, 13 insertions, 13 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index d18f42b05cd8..d1f026d5cf95 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -379,25 +379,25 @@ void SbiInstance::PrepareNumberFormatter( SvNumberFormatter*& rpNumberFormatter,
// HACK, beause the numberformatter doesn't swap the place holders
// for month, day and year according to the system setting.
// Problem: Print Year(Date) under engl. BS
- // also have a look at: svtools\source\sbx\sbxdate.cxx
+ // also have a look at: basic/source/sbx/sbxdate.cxx
OUString aDateStr;
switch( eDate )
{
- case MDY: aDateStr = "MM.TT.JJJJ"; break;
- case DMY: aDateStr = "TT.MM.JJJJ"; break;
- case YMD: aDateStr = "JJJJ.MM.TT"; break;
- default: aDateStr = "MM.TT.JJJJ"; break;
+ default:
+ case MDY: aDateStr = "MM/DD/YYYY"; break;
+ case DMY: aDateStr = "DD/MM/YYYY"; break;
+ case YMD: aDateStr = "YYYY/MM/DD"; break;
}
OUString aStr( aDateStr ); // PutandConvertEntry() modifies string!
rpNumberFormatter->PutandConvertEntry( aStr, nCheckPos, nType,
- rnStdDateIdx, LANGUAGE_GERMAN, eLangType );
+ rnStdDateIdx, LANGUAGE_ENGLISH_US, eLangType );
nCheckPos = 0;
OUString aStrHHMMSS(" HH:MM:SS");
aDateStr += aStrHHMMSS;
aStr = aDateStr;
rpNumberFormatter->PutandConvertEntry( aStr, nCheckPos, nType,
- rnStdDateTimeIdx, LANGUAGE_GERMAN, eLangType );
+ rnStdDateTimeIdx, LANGUAGE_ENGLISH_US, eLangType );
}
diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx
index 40896b2aeb96..6db87a7e1961 100644
--- a/basic/source/sbx/sbxdate.cxx
+++ b/basic/source/sbx/sbxdate.cxx
@@ -110,24 +110,24 @@ double ImpGetDate( const SbxValues* p )
// HACK, because the number formatter in PutandConvertEntry replace the wildcard
// for month, day, year not according to the configuration.
// Problem: Print Year(Date) under Engl. OS
- // quod vide basic\source\runtime\runtime.cxx
+ // quod vide basic/source/runtime/runtime.cxx
SvtSysLocale aSysLocale;
DateFormat eDate = aSysLocale.GetLocaleData().getDateFormat();
OUString aDateStr;
switch( eDate )
{
- case MDY: aDateStr = "MM.TT.JJJJ"; break;
- case DMY: aDateStr = "TT.MM.JJJJ"; break;
- case YMD: aDateStr = "JJJJ.MM.TT"; break;
- default: aDateStr = "MM.TT.JJJJ";
+ default:
+ case MDY: aDateStr = "MM/DD/YYYY"; break;
+ case DMY: aDateStr = "DD/MM/YYYY"; break;
+ case YMD: aDateStr = "YYYY/MM/DD"; break;
}
OUString aStr( aDateStr );
aStr += " HH:MM:SS";
pFormatter->PutandConvertEntry( aStr, nCheckPos, nType,
- nIndex, LANGUAGE_GERMAN, eLangType );
+ nIndex, LANGUAGE_ENGLISH_US, eLangType );
sal_Bool bSuccess = pFormatter->IsNumberFormat( *p->pOUString, nIndex, nRes );
if ( bSuccess )
{