Fix `VDBAbstractApplication >> #doPinMenuAs:item:`
authorJan Vrany <jan.vrany@labware.com>
Sat, 08 Jan 2022 23:28:55 +0000
changeset 250 9691a13a1452
parent 249 1a76ea72b44b
child 251 1519e5fd57bd
Fix `VDBAbstractApplication >> #doPinMenuAs:item:` Use (new) `#hasVerticalLayout:` instead of (obsolete) `#verticalLayout:`
VDBAbstractApplication.st
--- a/VDBAbstractApplication.st	Sat Jan 08 13:33:44 2022 +0000
+++ b/VDBAbstractApplication.st	Sat Jan 08 23:28:55 2022 +0000
@@ -1,7 +1,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
-Copyright (C) 2021 LabWare
+Copyright (C) 2021-2022 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -24,7 +24,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
-Copyright (C) 2021 LabWare
+Copyright (C) 2021-2022 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -536,7 +536,7 @@
         font: self menuFont;
         originator: self;    
         layout: (0.0 @ 0.0 corner:1.0 @ 1.0) asLayout;
-        verticalLayout:true.
+        hasVerticalLayout:true.
     panel
         menu:menu;
         receiver:self.
@@ -545,6 +545,7 @@
 
     "Created: / 16-03-2018 / 10:20:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 31-08-2018 / 08:38:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 08-01-2022 / 14:19:53 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !VDBAbstractApplication methodsFor:'startup & release'!