Changeset 34581
- Timestamp:
- 07/23/09 18:04:58 (4 years ago)
- Location:
- lang/vb2005/Tween/trunk/Tween
- Files:
-
- 3 modified
-
Resources/ChangeLog.txt (modified) (1 diff)
-
StatusDictionary.vb (modified) (9 diffs)
-
Tween.vbproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/vb2005/Tween/trunk/Tween/Resources/ChangeLog.txt
r34547 r34581 16 16 -自発言を既読にする設定追加 17 17 -フォロー数、フォロワー数、発言数、location、bioを表示するメニュー追加 18 -正しくソートされないバグ修正 18 19 ***Ver 0.6.0.0(2009/7/10) 19 20 -短縮URLの解決をした際、URLが正しく開けなくなる問題に対応 -
lang/vb2005/Tween/trunk/Tween/StatusDictionary.vb
r34460 r34581 1564 1564 Public Function Compare_ModeData_Ascending(ByVal x As Long, ByVal y As Long) As Integer 1565 1565 Dim result As Integer = String.Compare(_statuses.Item(x).Data, _statuses.Item(y).Data) 1566 If result = 0 Then result = CType(x - y, Integer)1566 If result = 0 Then result = x.CompareTo(y) 1567 1567 Return result 1568 1568 End Function … … 1571 1571 Public Function Compare_ModeData_Descending(ByVal x As Long, ByVal y As Long) As Integer 1572 1572 Dim result As Integer = String.Compare(_statuses.Item(y).Data, _statuses.Item(x).Data) 1573 If result = 0 Then result = CType(y - x, Integer)1573 If result = 0 Then result = y.CompareTo(x) 1574 1574 Return result 1575 1575 End Function … … 1577 1577 ' ステータスID比較 昇順 1578 1578 Public Function Compare_ModeId_Ascending(ByVal x As Long, ByVal y As Long) As Integer 1579 Return CType(x - y, Integer)1579 Return x.CompareTo(y) 1580 1580 End Function 1581 1581 1582 1582 ' ステータスID比較 降順 1583 1583 Public Function Compare_ModeId_Descending(ByVal x As Long, ByVal y As Long) As Integer 1584 Return CType(y - x, Integer)1584 Return y.CompareTo(x) 1585 1585 End Function 1586 1586 … … 1588 1588 Public Function Compare_ModeName_Ascending(ByVal x As Long, ByVal y As Long) As Integer 1589 1589 Dim result As Integer = String.Compare(_statuses.Item(x).Name, _statuses.Item(y).Name) 1590 If result = 0 Then result = CType(x - y, Integer)1590 If result = 0 Then result = x.CompareTo(y) 1591 1591 Return result 1592 1592 End Function … … 1595 1595 Public Function Compare_ModeName_Descending(ByVal x As Long, ByVal y As Long) As Integer 1596 1596 Dim result As Integer = String.Compare(_statuses.Item(y).Name, _statuses.Item(x).Name) 1597 If result = 0 Then result = CType(y - x, Integer)1597 If result = 0 Then result = y.CompareTo(x) 1598 1598 Return result 1599 1599 End Function … … 1602 1602 Public Function Compare_ModeNickName_Ascending(ByVal x As Long, ByVal y As Long) As Integer 1603 1603 Dim result As Integer = String.Compare(_statuses.Item(x).Nickname, _statuses.Item(y).Nickname) 1604 If result = 0 Then result = CType(x - y, Integer)1604 If result = 0 Then result = x.CompareTo(y) 1605 1605 Return result 1606 1606 End Function … … 1609 1609 Public Function Compare_ModeNickName_Descending(ByVal x As Long, ByVal y As Long) As Integer 1610 1610 Dim result As Integer = String.Compare(_statuses.Item(y).Nickname, _statuses.Item(x).Nickname) 1611 If result = 0 Then result = CType(y - x, Integer)1611 If result = 0 Then result = y.CompareTo(x) 1612 1612 Return result 1613 1613 End Function … … 1616 1616 Public Function Compare_ModeSource_Ascending(ByVal x As Long, ByVal y As Long) As Integer 1617 1617 Dim result As Integer = String.Compare(_statuses.Item(x).Source, _statuses.Item(y).Source) 1618 If result = 0 Then result = CType(x - y, Integer)1618 If result = 0 Then result = x.CompareTo(y) 1619 1619 Return result 1620 1620 End Function … … 1623 1623 Public Function Compare_ModeSource_Descending(ByVal x As Long, ByVal y As Long) As Integer 1624 1624 Dim result As Integer = String.Compare(_statuses.Item(y).Source, _statuses.Item(x).Source) 1625 If result = 0 Then result = CType(y - x, Integer)1625 If result = 0 Then result = y.CompareTo(x) 1626 1626 Return result 1627 1627 End Function -
lang/vb2005/Tween/trunk/Tween/Tween.vbproj
r34547 r34581 323 323 --> 324 324 <PropertyGroup> 325 <PostBuildEvent>"C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\sgen.exe" /f /a:"$(TargetPath)"</PostBuildEvent>325 <PostBuildEvent>"C:\Program Files\Microsoft.NET\SDK\v2.0\Bin\sgen.exe" /f /a:"$(TargetPath)"</PostBuildEvent> 326 326 </PropertyGroup> 327 327 </Project>
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)