DataSetLabel.st
changeset 3772 7875f39d446d
parent 3768 5fd0a628d63f
child 3885 602f5ef8532a
--- a/DataSetLabel.st	Mon Oct 19 11:29:00 2009 +0200
+++ b/DataSetLabel.st	Mon Oct 19 13:22:49 2009 +0200
@@ -12,11 +12,11 @@
 "{ Package: 'stx:libwidg2' }"
 
 Object subclass:#DataSetLabel
-        instanceVariableNames:'label selector argument adjust font fgColor bgColor
-                preferredHeight preferredWidth description'
-        classVariableNames:''
-        poolDictionaries:''
-        category:'Views-DataSet'
+	instanceVariableNames:'label selector argument adjust font fgColor bgColor
+		preferredHeight preferredWidth description'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Views-DataSet'
 !
 
 !DataSetLabel class methodsFor:'documentation'!
@@ -237,21 +237,6 @@
     ^ preferredWidth
 ! !
 
-!DataSetLabel methodsFor:'actions'!
-
-sendClickMsgTo:aReceiver
-    "inform the receiver of a button release notification
-    "
-
-    (aReceiver notNil and:[selector notNil]) ifTrue:[
-        aReceiver perform:selector withOptionalArgument:argument
-    ].
-
-    self isSortable ifTrue:[
-        self halt
-    ].
-! !
-
 !DataSetLabel methodsFor:'drawing'!
 
 redrawX:xLeft w:width h:height inset:inset on:aLabelView
@@ -524,9 +509,9 @@
 !DataSetLabel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.27 2009-10-19 08:50:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.28 2009-10-19 11:22:49 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.27 2009-10-19 08:50:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.28 2009-10-19 11:22:49 cg Exp $'
 ! !