Gtk.Application -> Adw.Application

We live in Adwaita world, not GTK.
This commit is contained in:
Sebastian Spaeth 2022-11-16 13:18:34 +02:00 committed by Evangelos Paterakis
parent 4b4afef594
commit 09ed73292b
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ namespace Tooth {
public static bool start_hidden = false;
public class Application : Gtk.Application {
public class Application : Adw.Application {
public Dialogs.MainWindow? main_window { get; set; }
public Dialogs.NewAccount? add_account_window { get; set; }

View File

@ -23,7 +23,7 @@ public class Tooth.Dialogs.MainWindow: Adw.ApplicationWindow, Saveable {
// button_press_event.connect (on_button_press);
}
public MainWindow (Gtk.Application app) {
public MainWindow (Adw.Application app) {
Object (
application: app,
icon_name: Build.DOMAIN,