• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OpenTweenのfork


Commit MetaInfo

修訂14935a7eff4929bc6544a56703878a443ea49d65 (tree)
時間2012-02-22 20:06:46
作者Kimura Youichi <kim.upsilon@bucy...>
CommiterKimura Youichi

Log Message

Fix build error in AppendSettingDialog.cs

Change Summary

差異

--- a/TweenCS/AppendSettingDialog.cs
+++ b/TweenCS/AppendSettingDialog.cs
@@ -425,6 +425,7 @@ namespace Tween
425425 break;
426426 default:
427427 Language = "en";
428+ break;
428429 }
429430 HotkeyEnabled = this.HotkeyCheck.Checked;
430431 HotkeyMod = Keys.None;
@@ -510,7 +511,7 @@ namespace Tween
510511 {
511512 e.Cancel = true;
512513 }
513- if (e.Cancel = false && TreeViewSetting.SelectedNode != null)
514+ if (e.Cancel == false && TreeViewSetting.SelectedNode != null)
514515 {
515516 Panel curPanel = (Panel)TreeViewSetting.SelectedNode.Tag;
516517 curPanel.Visible = false;
@@ -706,6 +707,7 @@ namespace Tween
706707 break;
707708 default:
708709 RadioProxySpecified.Checked = true;
710+ break;
709711 }
710712 bool chk = RadioProxySpecified.Checked;
711713 LabelProxyAddress.Enabled = chk;