aboutsummaryrefslogtreecommitdiff
path: root/src/gtk-dialog/gtk-logout-helper.c
diff options
context:
space:
mode:
authorChristoph Korn <c_korn@gmx.de>2009-09-08 10:09:45 -0500
committerTed Gould <ted@canonical.com>2009-09-08 10:09:45 -0500
commit85799abbe897e0f1e08b8d594716ab34b543d9fd (patch)
tree193e939ef6385ec5bdf59ba578e1ffd3c7b83375 /src/gtk-dialog/gtk-logout-helper.c
parenta5b8008742a719b77a7f3a13f81c2af02f6e4550 (diff)
parent1f47c9e8827165634149f6e21a4588fe577479d8 (diff)
downloadayatana-indicator-session-85799abbe897e0f1e08b8d594716ab34b543d9fd.tar.gz
ayatana-indicator-session-85799abbe897e0f1e08b8d594716ab34b543d9fd.tar.bz2
ayatana-indicator-session-85799abbe897e0f1e08b8d594716ab34b543d9fd.zip
Adding a GConf key to suppress confirmation dialogs
Diffstat (limited to 'src/gtk-dialog/gtk-logout-helper.c')
-rw-r--r--src/gtk-dialog/gtk-logout-helper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gtk-dialog/gtk-logout-helper.c b/src/gtk-dialog/gtk-logout-helper.c
index 5d87148..13991ca 100644
--- a/src/gtk-dialog/gtk-logout-helper.c
+++ b/src/gtk-dialog/gtk-logout-helper.c
@@ -6,6 +6,7 @@ Copyright 2009 Canonical Ltd.
Authors:
Ted Gould <ted@canonical.com>
+ Christoph Korn <c_korn@gmx.de>
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License version 3, as published
@@ -26,6 +27,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#include <dbus/dbus-glib.h>
#include "logout-dialog.h"
#include "ck-pk-helper.h"
+#include "gconf-helper.h"
static void
session_action (LogoutDialogAction action)
@@ -132,7 +134,7 @@ main (int argc, char * argv[])
}
GtkWidget * dialog = NULL;
- if (!pk_require_auth(type)) {
+ if (!pk_require_auth(type) && !supress_confirmations()) {
dialog = logout_dialog_new(type);
}