OSDN Git Service

All Refresh StopでUserStreamが止まってなかったのを修正
authorf_swallow <f_swallow@users.sourceforge.jp>
Mon, 21 Mar 2011 07:49:09 +0000 (07:49 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:19:17 +0000 (23:19 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@1495 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Tween.vb

index 22e0e92..d7aa635 100644 (file)
@@ -10235,9 +10235,9 @@ RETRY:
 
     Private Sub TimelineRefreshEnableChange(ByVal isEnable As Boolean)
         If isEnable Then
-            tw_UserStreamStarted()
+            tw.StartUserStream()
         Else
-            tw_UserStreamStopped()
+            tw.StopUserStream()
         End If
         TimerTimeline.Enabled = isEnable
     End Sub