1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-28 14:49:30 +00:00

HistoryBox: remove new-call property

The property wasn't removed correctly in f1f848c5f3

Signed-off-by: Julian Sparber <julian@sparber.net>
This commit is contained in:
Julian Sparber 2020-03-30 11:35:58 +02:00
parent f603f5be51
commit f63936d772
No known key found for this signature in database
GPG key ID: 7A0E81F405F35D6A
2 changed files with 0 additions and 16 deletions

View file

@ -63,7 +63,6 @@ enum {
PROP_0,
PROP_RECORD,
PROP_CONTACTS,
PROP_NEW_CALL,
PROP_LAST_PROP,
};
static GParamSpec *props[PROP_LAST_PROP];
@ -564,13 +563,6 @@ calls_call_record_row_class_init (CallsCallRecordRowClass *klass)
CALLS_TYPE_CONTACTS,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
props[PROP_NEW_CALL] =
g_param_spec_object ("new-call",
_("New call"),
_("The UI box for making calls"),
CALLS_TYPE_NEW_CALL_BOX,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);

View file

@ -53,7 +53,6 @@ enum {
PROP_0,
PROP_MODEL,
PROP_CONTACTS,
PROP_NEW_CALL,
PROP_LAST_PROP,
};
static GParamSpec *props[PROP_LAST_PROP];
@ -205,13 +204,6 @@ calls_history_box_class_init (CallsHistoryBoxClass *klass)
CALLS_TYPE_CONTACTS,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
props[PROP_NEW_CALL] =
g_param_spec_object ("new-call",
_("New call"),
_("The UI box for making calls"),
CALLS_TYPE_NEW_CALL_BOX,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);