Constructor
GObjectObjectnewv
deprecated: 2.54
Declaration [src]
GObject*
g_object_newv (
  GType object_type,
  guint n_parameters,
  GParameter* parameters
)
Description [src]
Creates a new instance of a GObject subtype and sets its properties.
Construction parameters (see G_PARAM_CONSTRUCT, G_PARAM_CONSTRUCT_ONLY)
which are not explicitly specified are set to their default values.
Deprecated since: 2.54
Use g_object_new_with_properties() instead.
deprecated. See GParameter for more information.
Parameters
- object_type
- 
            Type: GTypeThe type id of the GObjectsubtype to instantiate.
- n_parameters
- 
            Type: guintThe length of the parametersarray.
- parameters
- 
            Type: An array of GParameterAn array of GParameter.The length of the array is specified in the n_parametersargument.The data is owned by the caller of the function. 
Return value
Type: GObject
A new instance of
object_type.
| The caller of the function takes ownership of the data, and is responsible for freeing it. |