OSDN Git Service

Google:発言の検索先がWikipediaになっていたバグ修正
authorkiri_feather <kiri_feather@users.sourceforge.jp>
Fri, 15 Jan 2010 16:09:55 +0000 (16:09 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:10:40 +0000 (23:10 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@53 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Tween.vb

index 73e3bb2..5a95dac 100644 (file)
@@ -1695,7 +1695,7 @@ Public Class TweenMain
 
         'Google検索(試験実装)
         If StatusText.Text.StartsWith("Google:") AndAlso StatusText.Text.Trim.Length > 7 Then
-            Dim tmp As String = String.Format(My.Resources.SearchItem1Url, HttpUtility.UrlEncode(StatusText.Text.Substring(7)))
+            Dim tmp As String = String.Format(My.Resources.SearchItem2Url, HttpUtility.UrlEncode(StatusText.Text.Substring(7)))
             OpenUriAsync(tmp)
         End If