changeset 25924:2d5f48a39b7e

Fix copy-paste errors from cset 9c47eedc44e2 (bug #42490) * errordlg.m, warndlg.m: rename retval to htmp.
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Mon, 08 Oct 2018 23:04:24 +0200
parents a7511a1489b8
children e9c24b5e8673
files scripts/gui/errordlg.m scripts/gui/warndlg.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/gui/errordlg.m	Mon Oct 08 20:41:31 2018 +0200
+++ b/scripts/gui/errordlg.m	Mon Oct 08 23:04:24 2018 +0200
@@ -72,7 +72,7 @@
     opt = varargin{3};
   endif
   
-  retval = msgbox (msg, tit, "error", opt);
+  htmp = msgbox (msg, tit, "error", opt);
 
   if (nargout)
     h = htmp;
--- a/scripts/gui/warndlg.m	Mon Oct 08 20:41:31 2018 +0200
+++ b/scripts/gui/warndlg.m	Mon Oct 08 23:04:24 2018 +0200
@@ -72,7 +72,7 @@
     opt = varargin{3};
   endif
   
-  retval = msgbox (msg, tit, "warn", opt);
+  htmp = msgbox (msg, tit, "warn", opt);
 
   if (nargout)
     h = htmp;