Changeset 36
- Timestamp:
- 11/02/07 19:32:25
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/src/Makefile.am (modified) (1 diff)
- trunk/src/tmut-header-view.c (added)
- trunk/src/tmut-header-view.h (added)
- trunk/src/tmut-msg-view.c (modified) (3 diffs)
- trunk/src/tmut-tny-gtk-msg-view.c (added)
- trunk/src/tmut-tny-gtk-msg-view.h (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r35 r36 5 5 * Added support for translations 6 6 * Don't show silly or obvious instructions in the instruction label 7 * Attempt to have a custom header-view widget (for now, failed) 7 8 8 9 2007-11-01 Philip Van Hoof <pvanhoof@gnome.org> trunk/src/Makefile.am
r26 r36 19 19 tmut-shell-window.h \ 20 20 tmut-shell-child.c \ 21 tmut-shell-child.h 21 tmut-shell-child.h \ 22 tmut-header-view.c \ 23 tmut-header-view.h \ 24 tmut-tny-gtk-msg-view.c \ 25 tmut-tny-gtk-msg-view.h 22 26 23 27 trunk/src/tmut-msg-view.c
r34 r36 24 24 #include <glib/gi18n-lib.h> 25 25 26 #include "tmut-header-view.h" 27 #include "tmut-tny-gtk-msg-view.h" 26 28 #include "tmut-msg-view.h" 29 27 30 #include "tmut-shell-window.h" 28 31 #include "tmut-shell-child.h" 29 32 30 #include <tny-gtk-msg-view.h>31 33 32 34 static GObjectClass *parent_class = NULL; … … 229 231 230 232 tmut_msg_view_set_view (TMUT_MSG_VIEW (instance), 231 t ny_gtk_msg_view_new ());233 tmut_tny_gtk_msg_view_new ()); 232 234 233 235 return; … … 266 268 267 269 return; 270 } 271 272 static TnyHeaderView* 273 tmut_msg_view_create_header_view (TnyGtkMsgView *self) 274 { 275 return tmut_header_view_new (); 268 276 } 269 277
