[evolution-data-server] [camel-operation.c] Correct argument in g_signal_new()
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] [camel-operation.c] Correct argument in g_signal_new()
- Date: Wed, 5 Aug 2015 10:12:35 +0000 (UTC)
commit 5f9e4ec93e708d59a0bfaff9fdd6ba7dab38e764
Author: Milan Crha <mcrha redhat com>
Date: Wed Aug 5 12:11:54 2015 +0200
[camel-operation.c] Correct argument in g_signal_new()
camel/camel-operation.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/camel/camel-operation.c b/camel/camel-operation.c
index b064c2c..388f3b6 100644
--- a/camel/camel-operation.c
+++ b/camel/camel-operation.c
@@ -182,7 +182,7 @@ camel_operation_class_init (CamelOperationClass *class)
"push-message",
G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
- NULL,
+ 0,
NULL, NULL, NULL,
G_TYPE_NONE, 1,
G_TYPE_STRING);
@@ -191,7 +191,7 @@ camel_operation_class_init (CamelOperationClass *class)
"pop-message",
G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
- NULL,
+ 0,
NULL, NULL, NULL,
G_TYPE_NONE, 0);
@@ -199,7 +199,7 @@ camel_operation_class_init (CamelOperationClass *class)
"progress",
G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
- NULL,
+ 0,
NULL, NULL, NULL,
G_TYPE_NONE, 1,
G_TYPE_INT);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]