#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Fri, 21 Sep 2018 11:07:29 +0200
changeset 18398 1574b62cf84d
parent 18397 834e1aba548d
child 18399 6a442bd44640
#UI_ENHANCEMENT by cg class: TerminalApplication class changed: #mainMenu #tabMenu Buffer -> Page
TerminalApplication.st
--- a/TerminalApplication.st	Fri Sep 21 11:07:07 2018 +0200
+++ b/TerminalApplication.st	Fri Sep 21 11:07:29 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2001 by eXept Software AG
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libtool' }"
 
+"{ NameSpace: Smalltalk }"
+
 MultiViewToolApplication subclass:#TerminalApplication
 	instanceVariableNames:'initialDirectory keepAlive keepAliveProcess'
 	classVariableNames:''
@@ -160,7 +164,7 @@
            (Menu
               (
                (MenuItem
-                  label: 'Add Buffer'
+                  label: 'Add Page'
                   itemValue: addWorkspace
                 )
                (MenuItem
@@ -172,7 +176,7 @@
                 )
                (MenuItem
                   enabled: canRemoveWorkspace
-                  label: 'Remove Buffer'
+                  label: 'Remove Page'
                   itemValue: removeWorkspace
                 )
                )
@@ -301,6 +305,8 @@
         nil
         nil
       )
+
+    "Modified: / 21-09-2018 / 11:04:44 / Claus Gittinger"
 !
 
 tabMenu
@@ -321,7 +327,7 @@
      #(#Menu
         #(
          #(#MenuItem
-            #label: 'Add Buffer'
+            #label: 'Add Page'
             #translateLabel: true
             "/ #triggerOnDown: true
             #value: #addWorkspace
@@ -336,7 +342,7 @@
             #label: '-'
           )
          #(#MenuItem
-            #label: 'Remove Buffer'
+            #label: 'Remove Page'
             #translateLabel: true
             "/ #triggerOnDown: true
             #value: #removeWorkspace:
@@ -346,6 +352,8 @@
         nil
         nil
       )
+
+    "Modified: / 21-09-2018 / 11:04:51 / Claus Gittinger"
 ! !
 
 !TerminalApplication class methodsFor:'special startup'!
@@ -596,10 +604,10 @@
 !TerminalApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/TerminalApplication.st,v 1.23 2014-10-25 12:51:00 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/TerminalApplication.st,v 1.23 2014-10-25 12:51:00 cg Exp $'
+    ^ '$Header$'
 ! !