Skip to content

Commit

Permalink
automatically synchronized identical files to a4b29b8
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoostenveld committed May 24, 2019
1 parent a4b29b8 commit aa200a6
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 14 deletions.
6 changes: 4 additions & 2 deletions connectivity/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions fileio/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions forward/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions inverse/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions plotting/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions preproc/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down
6 changes: 4 additions & 2 deletions specest/private/ft_notification.m
Expand Up @@ -330,8 +330,10 @@
% store the last notification
state.message = strtrim(sprintf(varargin{:})); % remove the trailing newline
state.identifier = msgId;
state.stack = stack;
s = setstate(s, 'last', state);
if ~isempty(stack)
state.stack = stack;
s = setstate(s, 'last', state);
end

if strcmp(msgState, 'on')

Expand Down

0 comments on commit aa200a6

Please sign in to comment.