Few small fixes jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 15 Feb 2012 21:30:13 +0000
branchjv
changeset 12166 7931598931cb
parent 12165 521b588f704d
child 12167 8fc323443dff
Few small fixes
ColorInspectorView.st
Tools__ChangeList.st
Tools__CodeNavigationService.st
--- a/ColorInspectorView.st	Wed Feb 15 13:13:08 2012 +0000
+++ b/ColorInspectorView.st	Wed Feb 15 21:30:13 2012 +0000
@@ -127,4 +127,8 @@
 
 version_CVS
     ^ '§Header: /cvs/stx/stx/libtool/ColorInspectorView.st,v 1.14 2011/07/05 12:04:32 cg Exp §'
-! !
\ No newline at end of file
+!
+
+version_SVN
+    ^ '$Id: ColorInspectorView.st 7896 2012-02-15 21:30:13Z vranyj1 $'
+! !
--- a/Tools__ChangeList.st	Wed Feb 15 13:13:08 2012 +0000
+++ b/Tools__ChangeList.st	Wed Feb 15 21:30:13 2012 +0000
@@ -554,7 +554,7 @@
     itemIndex > aView list size ifTrue:[^self].
     item := aView list at: itemIndex.
 
-    ((aView left + x) between: (item x) and: (item x + 16))
+    ((aView left + x) between: (item x) and: ((item x ? 0) + 16))
         ifFalse:[^aView buttonPress:button x:x y:y].
 
     item removed: item removed not.
@@ -562,6 +562,7 @@
 
     "Created: / 08-12-2009 / 14:12:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 18-11-2011 / 14:55:41 / cg"
+    "Modified: / 15-02-2012 / 18:17:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 handlesButtonPress:button inView:aView
@@ -1093,14 +1094,13 @@
 !ChangeList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.14 2012/02/08 13:55:55 cg Exp $'
+    ^ '$Id: Tools__ChangeList.st 7896 2012-02-15 21:30:13Z vranyj1 $'
 !
 
 version_CVS
-    ^ 'Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.14 2012/02/08 13:55:55 cg Exp '
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.14 2012/02/08 13:55:55 cg Exp §'
 !
 
 version_SVN
-    ^ '$Id: Tools__ChangeList.st 7887 2012-02-13 19:19:58Z vranyj1 $'
+    ^ '$Id: Tools__ChangeList.st 7896 2012-02-15 21:30:13Z vranyj1 $'
 ! !
-
--- a/Tools__CodeNavigationService.st	Wed Feb 15 13:13:08 2012 +0000
+++ b/Tools__CodeNavigationService.st	Wed Feb 15 21:30:13 2012 +0000
@@ -96,12 +96,13 @@
 
 defaultVariableEmphasis
     DefaultVariableEmphasis isNil ifTrue:[
-        DefaultVariableEmphasis := Array with:(#backgroundColor -> (Color gray: 90))
+        DefaultVariableEmphasis := Array with:(#backgroundColor -> (Color redByte: 240 greenByte: 216 blueByte: 168))
     ].
     ^ DefaultVariableEmphasis
 
     "Created: / 25-06-2010 / 13:56:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 21-08-2011 / 11:04:20 / cg"
+    "Modified: / 15-02-2012 / 19:38:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !CodeNavigationService methodsFor:'change & update'!
@@ -598,5 +599,5 @@
 !
 
 version_SVN
-    ^ '$Id: Tools__CodeNavigationService.st 7854 2012-01-30 17:49:41Z vranyj1 $'
+    ^ '$Id: Tools__CodeNavigationService.st 7896 2012-02-15 21:30:13Z vranyj1 $'
 ! !