Tools__LintRuleSettingsApplication.st
branchjv
changeset 12433 864df9509297
parent 12432 f60cf9a3482b
child 15566 184cea584be5
--- a/Tools__LintRuleSettingsApplication.st	Wed Feb 27 23:57:04 2013 +0000
+++ b/Tools__LintRuleSettingsApplication.st	Thu Feb 28 10:04:18 2013 +0000
@@ -116,7 +116,7 @@
               listModel: rulesetList
               useIndex: false
               highlightMode: line
-              doubleClickSelector: doConfigurationEdit
+              doubleClickSelector: doEdit
             )
            (VerticalPanelViewSpec
               name: 'Buttons1'
@@ -197,7 +197,7 @@
         )
       )
 
-    "Modified: / 27-02-2013 / 11:23:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-02-2013 / 10:03:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !LintRuleSettingsApplication methodsFor:'accessing'!
@@ -400,9 +400,9 @@
 hasUnsavedChanges
     "superclass AbstractSettingsApplication says that I am responsible to implement this method"
 
-    ^RBCompositeLintRule rulesets ~= self rulesetList
+    ^RBCompositeLintRule rulesets asArray ~= self rulesetList asArray
 
-    "Modified: / 27-02-2013 / 11:17:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-02-2013 / 10:03:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !LintRuleSettingsApplication class methodsFor:'documentation'!