- Timestamp:
- Jun 25, 2011, 3:26:15 AM (14 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- f9df2f0
- Parents:
- 12294d2
- git-author:
- David Benjamin <davidben@mit.edu> (03/10/11 14:49:02)
- git-committer:
- David Benjamin <davidben@mit.edu> (06/25/11 03:26:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
view.c
r3b8a563 rfc8a87a 37 37 ml=&(v->ml); 38 38 39 /* nuke the old list */40 owl_ list_cleanup(&ml->list, NULL);39 /* nuke the old list, don't free the messages */ 40 owl_messagelist_cleanup(ml, false); 41 41 owl_messagelist_create(&(v->ml)); 42 42 … … 159 159 void owl_view_cleanup(owl_view *v) 160 160 { 161 owl_ list_cleanup(&v->ml.list, NULL);161 owl_messagelist_cleanup(&v->ml, false); 162 162 g_free(v->name); 163 163 }
Note: See TracChangeset
for help on using the changeset viewer.