aboutsummaryrefslogtreecommitdiff
path: root/src/ui/settings.c
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-03-13 13:56:02 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2022-03-13 13:56:02 +0100
commit43019c37a2a12147c401d75327e19e2ac383d6f4 (patch)
tree50c569d564b9c75559e1d7165f973ae956da04a1 /src/ui/settings.c
parent85b243c149d96ac88c5afd20993bbe18c50e16ca (diff)
downloadmessenger-gtk-43019c37a2a12147c401d75327e19e2ac383d6f4.tar.gz
messenger-gtk-43019c37a2a12147c401d75327e19e2ac383d6f4.zip
Added warning handling and leave messages, cleaning some code and fixed issue with QR pixel data
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/ui/settings.c')
-rw-r--r--src/ui/settings.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/settings.c b/src/ui/settings.c
index 6863968..7583941 100644
--- a/src/ui/settings.c
+++ b/src/ui/settings.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2021 GNUnet e.V. 3 Copyright (C) 2021--2022 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -62,4 +62,6 @@ void
62ui_settings_dialog_cleanup(UI_SETTINGS_Handle *handle) 62ui_settings_dialog_cleanup(UI_SETTINGS_Handle *handle)
63{ 63{
64 g_object_unref(handle->builder); 64 g_object_unref(handle->builder);
65
66 memset(handle, 0, sizeof(*handle));
65} 67}