svnno****@sourc*****
svnno****@sourc*****
2010年 12月 14日 (火) 02:44:11 JST
Revision: 1205 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1205 Author: syo68k Date: 2010-12-14 02:44:11 +0900 (Tue, 14 Dec 2010) Log Message: ----------- 設定ファイルが存在しない状態で起動するとNullReferenceExceptionが発生するのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-13 10:47:47 UTC (rev 1204) +++ trunk/Tween/Tween.vb 2010-12-13 17:44:11 UTC (rev 1205) @@ -534,9 +534,10 @@ '<<<<<<<<<設定関連>>>>>>>>> '設定コンバージョン - ConvertConfig() + 'ConvertConfig() ''設定読み出し + LoadConfig() '新着バルーン通知のチェック状態設定 NewPostPopMenuItem.Checked = _cfgCommon.NewAllPop @@ -1176,14 +1177,14 @@ End If End Sub - Private Sub ConvertConfig() - '新タブ設定ファイル存在チェック - If System.IO.File.Exists(SettingTabs.GetSettingFilePath("")) Then - LoadConfig() - Exit Sub - End If - 'LoadOldConfig() - End Sub + 'Private Sub ConvertConfig() + ' '新タブ設定ファイル存在チェック + ' If System.IO.File.Exists(SettingTabs.GetSettingFilePath("")) Then + ' LoadConfig() + ' Exit Sub + ' End If + ' 'LoadOldConfig() + 'End Sub Private Sub TimerTimeline_Elapsed(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerTimeline.Elapsed Static homeCounter As Integer = 0