XWorkstation.st
changeset 8225 88de54496ec6
parent 8189 44ec3d35edcd
child 8261 9874141ac064
--- a/XWorkstation.st	Tue Nov 21 16:28:57 2017 +0100
+++ b/XWorkstation.st	Fri Nov 24 13:59:27 2017 +0100
@@ -11545,11 +11545,18 @@
      i.e. supported clipboard formats"
 
     "Note: some sender code assumes that ST_OBJECT is first"
-    ^ #(ST_OBJECT STRING UTF8_STRING TIMESTAMP TARGETS LENGTH
-      #'text/plain' #'text/plain;codeset=utf-8'
-    ) collect:[:eachTargetSymbol|
-	    self atomIDOf:eachTargetSymbol
-	] as:IntegerArray.
+    ^ #(
+        ST_OBJECT 
+        STRING 
+        UTF8_STRING 
+        TIMESTAMP 
+        TARGETS 
+        LENGTH
+        #'text/plain' 
+        #'text/plain;codeset=utf-8'
+    ) collect:[:eachTargetSymbol| self atomIDOf:eachTargetSymbol] as:IntegerArray.
+
+    "Modified (format): / 24-11-2017 / 11:06:23 / cg"
 ! !
 
 !XWorkstation methodsFor:'selections-basic'!