瀏覽代碼

* use ShortTimeFormat also for LongTimeFormat if T_FMT_AMPM is not defined
for the current locale (Kylix-compatible, thanks to Luca Olivetti for
the hint, fixes mantis #13947)

git-svn-id: trunk@13395 -

Jonas Maebe 16 年之前
父節點
當前提交
4e446c6184
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      rtl/unix/clocale.pp

+ 4 - 1
rtl/unix/clocale.pp

@@ -260,7 +260,10 @@ begin
   OrgFormatSettings.LongTimeFormat:=longtimeformat;
 {$endif}
 
-  LongTimeFormat := TransformFormatStr(LongTimeFormat);
+  if (LongTimeFormat='') then
+    LongTimeFormat:=ShortTimeFormat
+  else
+    LongTimeFormat := TransformFormatStr(LongTimeFormat);
 
   {$Ifdef BSD}
      plocale:=localeconv;