OSDN Git Service

・違うメニューまで変更していたのを修正
authorf_swallow <f_swallow@users.sourceforge.jp>
Fri, 12 Nov 2010 11:52:45 +0000 (11:52 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:16:31 +0000 (23:16 +0900)
・ProtectNotInclude関係をコメントアウトした

git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@1061 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Setting.vb
Tween/Setting/SettingCommon.vb
Tween/Tween.vb

index 3f41c35..053e1c5 100644 (file)
@@ -96,7 +96,7 @@ Public Class Setting
     Private _MyUnreadStyle As Boolean
     Private _MyDateTimeFormat As String
     Private _MyDefaultTimeOut As Integer
-    Private _MyProtectNotInclude As Boolean
+    'Private _MyProtectNotInclude As Boolean
     Private _MyLimitBalloon As Boolean
     Private _MyPostAndGet As Boolean
     Private _MyReplyPeriod As Integer
@@ -261,7 +261,7 @@ Public Class Setting
             _MyUnreadStyle = chkUnreadStyle.Checked
             _MyDateTimeFormat = CmbDateTimeFormat.Text
             _MyDefaultTimeOut = CType(ConnectionTimeOut.Text, Integer)
-            _MyProtectNotInclude = CheckProtectNotInclude.Checked
+            '_MyProtectNotInclude = CheckProtectNotInclude.Checked
             _MyLimitBalloon = CheckBalloonLimit.Checked
             _MyAutoShortUrlFirst = CType(ComboBoxAutoShortUrlFirst.SelectedIndex, UrlConverter)
             _MyTabIconDisp = chkTabIconDisp.Checked
@@ -499,7 +499,7 @@ Public Class Setting
         chkUnreadStyle.Checked = _MyUnreadStyle
         CmbDateTimeFormat.Text = _MyDateTimeFormat
         ConnectionTimeOut.Text = _MyDefaultTimeOut.ToString
-        CheckProtectNotInclude.Checked = _MyProtectNotInclude
+        'CheckProtectNotInclude.Checked = _MyProtectNotInclude
         CheckBalloonLimit.Checked = _MyLimitBalloon
         ComboBoxAutoShortUrlFirst.SelectedIndex = _MyAutoShortUrlFirst
         chkTabIconDisp.Checked = _MyTabIconDisp
@@ -1424,14 +1424,14 @@ Public Class Setting
         End Set
     End Property
 
-    Public Property ProtectNotInclude() As Boolean
-        Get
-            Return _MyProtectNotInclude
-        End Get
-        Set(ByVal value As Boolean)
-            _MyProtectNotInclude = value
-        End Set
-    End Property
+    'Public Property ProtectNotInclude() As Boolean
+    '    Get
+    '        Return _MyProtectNotInclude
+    '    End Get
+    '    Set(ByVal value As Boolean)
+    '        _MyProtectNotInclude = value
+    '    End Set
+    'End Property
 
     Public Property TabIconDisp() As Boolean
         Get
index 9dd3dec..b0f31c9 100644 (file)
@@ -144,7 +144,7 @@ Public Class SettingCommon
     Public UseUnreadStyle As Boolean = True
     Public DateTimeFormat As String = "yyyy/MM/dd H:mm:ss"
     Public DefaultTimeOut As Integer = 20
-    Public ProtectNotInclude As Boolean = True
+    'Public ProtectNotInclude As Boolean = True
     Public LimitBalloon As Boolean = False
     Public TabIconDisp As Boolean = True
     Public ReplyIconState As REPLY_ICONSTATE = REPLY_ICONSTATE.StaticIcon
index 49d6962..5e6affb 100644 (file)
@@ -685,7 +685,7 @@ Public Class TweenMain
 
         SettingDialog.UseUnreadStyle = _cfgCommon.UseUnreadStyle
         SettingDialog.DefaultTimeOut = _cfgCommon.DefaultTimeOut
-        SettingDialog.ProtectNotInclude = _cfgCommon.ProtectNotInclude
+        'SettingDialog.ProtectNotInclude = _cfgCommon.ProtectNotInclude
         SettingDialog.PlaySound = _cfgCommon.PlaySound
         SettingDialog.DateTimeFormat = _cfgCommon.DateTimeFormat
         SettingDialog.LimitBalloon = _cfgCommon.LimitBalloon
@@ -5731,7 +5731,7 @@ RETRY:
             _cfgCommon.UseUnreadStyle = SettingDialog.UseUnreadStyle
             _cfgCommon.DateTimeFormat = SettingDialog.DateTimeFormat
             _cfgCommon.DefaultTimeOut = SettingDialog.DefaultTimeOut
-            _cfgCommon.ProtectNotInclude = SettingDialog.ProtectNotInclude
+            '_cfgCommon.ProtectNotInclude = SettingDialog.ProtectNotInclude
             _cfgCommon.LimitBalloon = SettingDialog.LimitBalloon
             _cfgCommon.AutoShortUrlFirst = SettingDialog.AutoShortUrlFirst
             _cfgCommon.TabIconDisp = SettingDialog.TabIconDisp
@@ -8921,7 +8921,6 @@ RETRY:
                 Me.RtOpMenuItem.Enabled = False
                 Me.RtUnOpMenuItem.Enabled = False
                 Me.QtOpMenuItem.Enabled = False
-                Me.QuoteStripMenuItem.Enabled = False
                 If _curPost.IsMe Then
                     Me.DelOpMenuItem.Enabled = True
                 Else
@@ -8931,7 +8930,6 @@ RETRY:
                 Me.RtOpMenuItem.Enabled = True
                 Me.RtUnOpMenuItem.Enabled = True
                 Me.QtOpMenuItem.Enabled = True
-                Me.QuoteStripMenuItem.Enabled = True
                 If _curPost.IsMe Then
                     Me.RtOpMenuItem.Enabled = False
                     Me.DelOpMenuItem.Enabled = True