mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-12 15:47:35 +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:
parent
f603f5be51
commit
f63936d772
2 changed files with 0 additions and 16 deletions
|
@ -63,7 +63,6 @@ enum {
|
||||||
PROP_0,
|
PROP_0,
|
||||||
PROP_RECORD,
|
PROP_RECORD,
|
||||||
PROP_CONTACTS,
|
PROP_CONTACTS,
|
||||||
PROP_NEW_CALL,
|
|
||||||
PROP_LAST_PROP,
|
PROP_LAST_PROP,
|
||||||
};
|
};
|
||||||
static GParamSpec *props[PROP_LAST_PROP];
|
static GParamSpec *props[PROP_LAST_PROP];
|
||||||
|
@ -564,13 +563,6 @@ calls_call_record_row_class_init (CallsCallRecordRowClass *klass)
|
||||||
CALLS_TYPE_CONTACTS,
|
CALLS_TYPE_CONTACTS,
|
||||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
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);
|
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,6 @@ enum {
|
||||||
PROP_0,
|
PROP_0,
|
||||||
PROP_MODEL,
|
PROP_MODEL,
|
||||||
PROP_CONTACTS,
|
PROP_CONTACTS,
|
||||||
PROP_NEW_CALL,
|
|
||||||
PROP_LAST_PROP,
|
PROP_LAST_PROP,
|
||||||
};
|
};
|
||||||
static GParamSpec *props[PROP_LAST_PROP];
|
static GParamSpec *props[PROP_LAST_PROP];
|
||||||
|
@ -205,13 +204,6 @@ calls_history_box_class_init (CallsHistoryBoxClass *klass)
|
||||||
CALLS_TYPE_CONTACTS,
|
CALLS_TYPE_CONTACTS,
|
||||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
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);
|
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue