libsysprof-analyze: use EggBitset instead of GTK

This uses the newly brought in EggBitset instead of GtkBitset so that we
can drop our GTK dependency in the libsysprof-analyze library.
This commit is contained in:
Christian Hergert
2023-05-25 15:13:45 -07:00
parent 375aaf7086
commit ff41633abc
7 changed files with 93 additions and 93 deletions

View File

@ -21,7 +21,7 @@
#pragma once
#include <gio/gio.h>
#include <gtk/gtk.h>
#include <eggbitset.h>
G_BEGIN_DECLS
@ -30,6 +30,6 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (SysprofDocumentBitsetIndex, sysprof_document_bitset_index, SYSPROF, DOCUMENT_BITSET_INDEX, GObject)
GListModel *_sysprof_document_bitset_index_new (GListModel *model,
GtkBitset *bitset);
EggBitset *bitset);
G_END_DECLS