Changeset 183


Ignore:
Timestamp:
Mar 26, 2007, 6:38:07 AM (17 years ago)
Author:
dai
Message:

*Byteをパラメータに持つメソッドをコメントアウト(弊害がなければ削除する方向でいきましょう)。
Operator=の定義をコメントアウト。

File:
1 edited

Legend:

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

    r182 r183  
    2525    End Sub
    2626
    27     Sub String(initStr As *Byte)
     27/*  Sub String(initStr As *Byte)
    2828        String()
    2929        Assign(initStr As PCTSTR)
    30     End Sub
     30    End Sub*/
    3131
    3232    Sub String(initStr As PCSTR)
     
    8080    End Function
    8181
    82     Sub Operator = (ByRef objString As String)
     82/*  Sub Operator = (ByRef objString As String)
    8383        Assign(objString.Chars, objString.m_Length)
    8484    End Sub
     
    9494    Sub Operator = (text As PCWSTR)
    9595        Assign(text)
    96     End Sub
     96    End Sub*/
    9797
    9898    Const Function Operator [] (n As Long) As StrChar
     
    116116    End Sub
    117117
    118     Const Function Operator + (text As *Byte) As String
     118/*  Const Function Operator + (text As *Byte) As String
    119119        Return Concat(text As PCTSTR, lstrlen(text))
    120     End Function
     120    End Function*/
    121121
    122122    Const Function Operator + (text As PCSTR) As String
Note: See TracChangeset for help on using the changeset viewer.