From 6e6535c7b28d7d56c18cc9d1a158835095f0821a Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Wed, 16 May 2018 16:07:50 +0200 Subject: [PATCH] clean up about info --- src/+gui_tools/show_error.m | 6 +++--- src/gui_about.m | 3 +-- src/gui_term_of_use.m | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/+gui_tools/show_error.m b/src/+gui_tools/show_error.m index 512d078..bd81d89 100644 --- a/src/+gui_tools/show_error.m +++ b/src/+gui_tools/show_error.m @@ -1,6 +1,6 @@ function show_error(error_msg, ME, mode) % function show_error(error_msg, ME, mode) -% interface for displaying Dynare_GUI error message in Matlab error dialog box +% interface for displaying Dynare GUI error message in Matlab error dialog box % % INPUTS % error_msg: error message which is displayed @@ -32,7 +32,7 @@ function show_error(error_msg, ME, mode) if nargin == 1 - errordlg(error_msg,'Dynare_GUI Error','modal'); + errordlg(error_msg,'Dynare GUI Error','modal'); else errosrStr = [sprintf('%s:\n\n', error_msg),... sprintf('%s\n\n', ME.message)]; @@ -41,7 +41,7 @@ else errosrStr = [errosrStr, sprintf('Full error report:\n %s\n', getReport(ME,'extended', 'hyperlinks','off'))]; end - errordlg(errosrStr,'Dynare_GUI Error','modal'); + errordlg(errosrStr,'Dynare GUI Error','modal'); gui_tools.project_log_entry(error_msg, ME.message); end diff --git a/src/gui_about.m b/src/gui_about.m index 7f6fbb1..310e0c1 100644 --- a/src/gui_about.m +++ b/src/gui_about.m @@ -45,8 +45,7 @@ panel = uipanel( ... 'Title', '', ... 'BorderType', 'none'); -aboutStr ={'';'';'';'';'Dynare_GUI v.0.7';'';'';'Release date: June 30 2016'; '';... - 'Developed by Dynare Team and Milica Labus (milica.labus@belox.rs)'; ''; ''; '........' }; +aboutStr ={'Dynare GUI v.0.7';}; fsize = get(0,'defaultuicontrolFontSize') + 2; uicontrol(panel, 'style','text', 'FontSize', fsize, 'Units','normalized', ... diff --git a/src/gui_term_of_use.m b/src/gui_term_of_use.m index 5ad0152..86078fa 100644 --- a/src/gui_term_of_use.m +++ b/src/gui_term_of_use.m @@ -46,8 +46,8 @@ panel = uipanel( ... 'BorderType', 'none'); termOfUseStr = {... - 'This is Dynare_GUI, version 0.7';'';'';... - 'Copyright © 1996-2018, Dynare Team';'';... + 'Dynare GUI, version 0.7';'';'';... + 'Copyright � 1996-2018, Dynare Team';'';... 'Permission is granted to copy, distribute and/or modify this code under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.';'';... -- GitLab