mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
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:
@ -27,10 +27,10 @@
|
|||||||
|
|
||||||
struct _SysprofApplication
|
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 {
|
struct {
|
||||||
const gchar *action_name;
|
const gchar *action_name;
|
||||||
|
|||||||
@ -18,13 +18,13 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <dazzle.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define SYSPROF_TYPE_APPLICATION (sysprof_application_get_type())
|
#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);
|
SysprofApplication *sysprof_application_new (void);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user