Kaydet (Commit) cc05f8d9 authored tarafından Pranav Kant's avatar Pranav Kant

gtv: Width, height properties should not be construct only

Change-Id: I2d1b29f52c1fe0449cf9afe47c509ef6250804a8
üst 0e2a3619
...@@ -459,7 +459,6 @@ gtv_lok_dialog_class_init(GtvLokDialogClass* klass) ...@@ -459,7 +459,6 @@ gtv_lok_dialog_class_init(GtvLokDialogClass* klass)
"Dialog width", "Dialog width",
0, 1024, 0, 0, 1024, 0,
static_cast<GParamFlags>(G_PARAM_READWRITE | static_cast<GParamFlags>(G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
properties[PROP_DIALOG_HEIGHT] = g_param_spec_uint("height", properties[PROP_DIALOG_HEIGHT] = g_param_spec_uint("height",
...@@ -467,7 +466,6 @@ gtv_lok_dialog_class_init(GtvLokDialogClass* klass) ...@@ -467,7 +466,6 @@ gtv_lok_dialog_class_init(GtvLokDialogClass* klass)
"Dialog height", "Dialog height",
0, 1024, 0, 0, 1024, 0,
static_cast<GParamFlags>(G_PARAM_READWRITE | static_cast<GParamFlags>(G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
g_object_class_install_properties (G_OBJECT_CLASS(klass), PROP_LAST, properties); g_object_class_install_properties (G_OBJECT_CLASS(klass), PROP_LAST, properties);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment