diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-08-19 09:17:53 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-08-19 09:17:53 +0200 |
| commit | e524853dc4a5bfb543738126da5f9d2c72a741f0 (patch) | |
| tree | acdbf55fb1cd20d6fe87abd12b47bf38c71e84a0 /core | |
| parent | 29af89fc6536de128a123566d2854350d00d150f (diff) | |
| download | turns-e524853dc4a5bfb543738126da5f9d2c72a741f0.tar.xz turns-e524853dc4a5bfb543738126da5f9d2c72a741f0.zip | |
core: fix reference to schema id
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/settings.cpp b/core/src/settings.cpp index c98e5eb..13cf665 100644 --- a/core/src/settings.cpp +++ b/core/src/settings.cpp @@ -21,7 +21,7 @@ namespace turns::core auto settings = g_settings_new_full(Glib::unwrap(schema), nullptr, nullptr); return Glib::wrap(settings); #else - return Gio::Settings::create(schema); + return Gio::Settings::create(schema_id); #endif } |
