OSDN Git Service

関数名修正
authorsyo68k <syo68k@users.sourceforge.jp>
Tue, 17 Aug 2010 12:45:23 +0000 (12:45 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:14:49 +0000 (23:14 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@720 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Connection/HttpTwitter.vb
Tween/ListElement.vb
Tween/Twitter.vb

index f5fe218..a11ac71 100644 (file)
@@ -559,7 +559,7 @@ Public Class HttpTwitter
                             Nothing)
     End Function
 
-    Public Function GetListNembers(ByVal user As String, ByVal list_id As String, ByVal cursor As Long, ByRef content As String) As HttpStatusCode
+    Public Function GetListMembers(ByVal user As String, ByVal list_id As String, ByVal cursor As Long, ByRef content As String) As HttpStatusCode
         Dim param As New Dictionary(Of String, String)
         param.Add("cursor", cursor.ToString())
         Return httpCon.GetContent(GetMethod, _
index 70e66c4..f5aff5f 100644 (file)
@@ -51,7 +51,7 @@ Public Class ListElement
 
     Public Sub RefreshMembers()
         Dim users As New List(Of UserInfo)()
-        Me._tw.GetListNembers(Me.Id.ToString(), users)
+        Me._tw.GetListMembers(Me.Id.ToString(), users)
         Me._members = users
     End Sub
 
index d3e3dab..e678a91 100644 (file)
@@ -2212,7 +2212,7 @@ Public Class Twitter
         Return ""
     End Function
 
-    Public Function GetListNembers(ByVal list_id As String, ByVal lists As List(Of UserInfo)) As String
+    Public Function GetListMembers(ByVal list_id As String, ByVal lists As List(Of UserInfo)) As String
         If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return ""
 
         Dim res As HttpStatusCode
@@ -2221,7 +2221,7 @@ Public Class Twitter
 
         Do
             Try
-                res = twCon.GetListNembers(Me.Username, list_id, cursor, content)
+                res = twCon.GetListMembers(Me.Username, list_id, cursor, content)
             Catch ex As Exception
                 Return "Err:" + ex.Message
             End Try