app: dedazzle

We will have to find alternate means to load style sheets in the future,
but we can rely on AdwApplication for that.
This commit is contained in:
Christian Hergert
2021-09-28 13:20:59 -07:00
parent 3b2c111598
commit f2aca5a812
2 changed files with 4 additions and 4 deletions

View File

@ -27,10 +27,10 @@
struct _SysprofApplication
{
DzlApplication parent_instance;
GtkApplication parent_instance;
};
G_DEFINE_TYPE (SysprofApplication, sysprof_application, DZL_TYPE_APPLICATION)
G_DEFINE_TYPE (SysprofApplication, sysprof_application, GTK_TYPE_APPLICATION)
struct {
const gchar *action_name;

View File

@ -18,13 +18,13 @@
#pragma once
#include <dazzle.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define SYSPROF_TYPE_APPLICATION (sysprof_application_get_type())
G_DECLARE_FINAL_TYPE (SysprofApplication, sysprof_application, SYSPROF, APPLICATION, DzlApplication)
G_DECLARE_FINAL_TYPE (SysprofApplication, sysprof_application, SYSPROF, APPLICATION, GtkApplication)
SysprofApplication *sysprof_application_new (void);