1 //
2 // aegis - project change supervisor
3 // Copyright (C) 2001, 2003-2008, 2012 Peter Miller
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published
7 // by the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
17 //
18 
19 #include <common/ac/assert.h>
20 
21 #include <libaegis/change/branch.h>
22 
23 
24 void
change_branch_review_pass_undo_notify_command_set(change::pointer cp,string_ty * s)25 change_branch_review_pass_undo_notify_command_set(change::pointer cp,
26     string_ty *s)
27 {
28     cstate_ty       *cstate_data;
29     cstate_branch_ty *bp;
30 
31     cstate_data = cp->cstate_get();
32     bp = cstate_data->branch;
33     assert(bp);
34     if (bp->review_pass_undo_notify_command)
35     {
36         str_free(bp->review_pass_undo_notify_command);
37         bp->review_pass_undo_notify_command = 0;
38     }
39     if (s && s->str_length)
40         bp->review_pass_undo_notify_command = str_copy(s);
41 }
42 
43 
44 // vim: set ts=8 sw=4 et :
45