Changeset 3222
- Timestamp:
- 12/31/07 12:46:36
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymailui-gtk/tny-gtk-header-list-model.c
r3220 r3222 41 41 #include <glib/gi18n-lib.h> 42 42 #include <gdk/gdk.h> 43 #include <gtk/gtk.h> 43 44 44 45 #include <tny-gtk-header-list-model.h> … … 551 552 } 552 553 554 #if GTK_CHECK_VERSION (2,16,0) 555 556 static inline GtkTreePath * 557 gtk_tree_path_new_internal (gint index) 558 { 559 GtkTreePath *path = gtk_tree_path_new (); 560 gtk_tree_path_append_index (path, index); 561 return path; 562 } 563 static inline void 564 gtk_tree_path_free_internal (GtkTreePath *path_in) 565 { 566 gtk_tree_path_free (path_in); 567 } 568 569 #else 570 553 571 typedef struct 554 572 { … … 574 592 g_slice_free (GtkTreePathInternal, path); 575 593 } 594 595 #endif 576 596 577 597 static gboolean
