#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Mon, 28 May 2018 14:23:45 +0200
changeset 18164 e694e7e1778c
parent 18163 146b866d952d
child 18165 86f126920445
#REFACTORING by cg class: Tools::Inspector2 added: #headLineLabelView #hideReceiver:
Tools__Inspector2.st
--- a/Tools__Inspector2.st	Mon May 28 14:21:33 2018 +0200
+++ b/Tools__Inspector2.st	Mon May 28 14:23:45 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -1103,6 +1105,14 @@
 
 !Inspector2 methodsFor:'configuration'!
 
+headLineLabelView
+    "for compatibility with InspectorView - dummy"
+
+    ^ nil
+
+    "Created: / 28-05-2018 / 13:32:57 / Claus Gittinger"
+!
+
 hideHashes:aBoolean
     "compatibiliy with InspectorView - must be implemented"
 
@@ -1115,6 +1125,14 @@
     #todo
 !
 
+hideReceiver:aBoolean
+    "for compatibility with InspectorView - dummy"
+
+    ^ self
+
+    "Created: / 28-05-2018 / 13:33:28 / Claus Gittinger"
+!
+
 maxItemsInHistory:aNumber
     self navigationHistoryHolder value maxItemsInHistory:aNumber
 !