mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-08 06:00:54 +00:00
Remove GSEAL macros
This commit is contained in:
@ -45,24 +45,24 @@ struct _FooTreeStore
|
|||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent;
|
||||||
|
|
||||||
gint GSEAL (stamp);
|
gint stamp;
|
||||||
gpointer GSEAL (root);
|
gpointer root;
|
||||||
gpointer GSEAL (last);
|
gpointer last;
|
||||||
gint GSEAL (n_columns);
|
gint n_columns;
|
||||||
gint GSEAL (sort_column_id);
|
gint sort_column_id;
|
||||||
GList *GSEAL (sort_list);
|
GList *sort_list;
|
||||||
GtkSortType GSEAL (order);
|
GtkSortType order;
|
||||||
GType *GSEAL (column_headers);
|
GType *column_headers;
|
||||||
GtkTreeIterCompareFunc GSEAL (default_sort_func);
|
GtkTreeIterCompareFunc default_sort_func;
|
||||||
gpointer GSEAL (default_sort_data);
|
gpointer default_sort_data;
|
||||||
GDestroyNotify GSEAL (default_sort_destroy);
|
GDestroyNotify default_sort_destroy;
|
||||||
|
|
||||||
guint row_changed_id;
|
guint row_changed_id;
|
||||||
guint row_inserted_id;
|
guint row_inserted_id;
|
||||||
guint row_has_child_toggled_id;
|
guint row_has_child_toggled_id;
|
||||||
guint rows_reordered_id;
|
guint rows_reordered_id;
|
||||||
|
|
||||||
guint GSEAL (columns_dirty) : 1;
|
guint (columns_dirty) : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _FooTreeStoreClass
|
struct _FooTreeStoreClass
|
||||||
|
|||||||
@ -607,14 +607,6 @@ fill_callers_list (Application *app)
|
|||||||
gtk_tree_view_columns_autosize (app->callers_view);
|
gtk_tree_view_columns_autosize (app->callers_view);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
fill_lists (Application *app)
|
|
||||||
{
|
|
||||||
fill_main_list (app);
|
|
||||||
fill_callers_list (app);
|
|
||||||
fill_descendants_tree (app);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
enter_display_mode (Application *app)
|
enter_display_mode (Application *app)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user