Ignore:
Timestamp:
Mar 28, 2007, 10:29:58 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

Currencyを追加、その他修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/String.ab

    r183 r192  
    240240        If AllocStringBuffer(textLengthW) <> 0 Then
    241241            MultiByteToWideChar(CP_THREAD_ACP, 0, text, textLengthA, Chars, textLengthW)
     242            Chars[textLengthW] = 0
    242243        End If
    243244#endif
     
    249250        If AllocStringBuffer(textLengthA) <> 0 Then
    250251            WideCharToMultiByte(CP_THREAD_ACP, 0, text, textLengthW, Chars, textLengthA, 0, 0)
     252            Chars[textLengthA] = 0
    251253        End If
    252254#else
     
    466468        memcpy(VarPtr(Remove.Chars[startIndex]), VarPtr(This.Chars[startIndex + count]), SizeOf (StrChar) * (m_Length - startIndex - count))
    467469    End Function
    468 /*
     470
    469471    Static Function IsNullOrEmpty(s As String) As Boolean
    470472        If s <> Nothing Then
     
    475477        Return False
    476478    End Function
    477 */
     479
    478480    Const Function Replace(oldChar As StrChar, newChar As StrChar) As String
    479481        Replace = Copy(This)
Note: See TracChangeset for help on using the changeset viewer.