e: formatting

SVN revision: 69055
This commit is contained in:
Sebastian Dransfeld 2012-03-08 11:37:54 +00:00
parent 8e446682e3
commit 05bf07450c
8 changed files with 54 additions and 54 deletions

View File

@ -123,7 +123,7 @@ _screen_info_refresh(void)
return EINA_FALSE; return EINA_FALSE;
} }
static Eina_Bool static Eina_Bool
_e_event_config_loaded_cb(void *data __UNUSED__, int type, void *ev __UNUSED__) _e_event_config_loaded_cb(void *data __UNUSED__, int type, void *ev __UNUSED__)
{ {
if (type != E_EVENT_CONFIG_LOADED) return EINA_TRUE; if (type != E_EVENT_CONFIG_LOADED) return EINA_TRUE;
@ -133,7 +133,7 @@ _e_event_config_loaded_cb(void *data __UNUSED__, int type, void *ev __UNUSED__)
return EINA_FALSE; return EINA_FALSE;
} }
static void static void
_event_listeners_add(void) _event_listeners_add(void)
{ {
_event_handlers = eina_list_append(_event_handlers, ecore_event_handler_add(E_EVENT_CONFIG_LOADED, _e_event_config_loaded_cb, NULL)); _event_handlers = eina_list_append(_event_handlers, ecore_event_handler_add(E_EVENT_CONFIG_LOADED, _e_event_config_loaded_cb, NULL));
@ -144,7 +144,7 @@ _event_listeners_add(void)
} }
} }
static void static void
_try_restore_configuration(void) _try_restore_configuration(void)
{ {
if (e_config->randr_serialized_setup) if (e_config->randr_serialized_setup)

View File

@ -10,7 +10,7 @@
//New helper functions //New helper functions
E_Randr_Serialized_Setup_11 * E_Randr_Serialized_Setup_11 *
_serialized_setup_11_new(void) _serialized_setup_11_new(void)
{ {
E_Randr_Serialized_Setup_11 *ss; E_Randr_Serialized_Setup_11 *ss;
@ -32,7 +32,7 @@ _serialized_setup_11_new_failed_free_ss:
} }
//Update/value set helper functions //Update/value set helper functions
E_Randr_Serialized_Setup_11 * E_Randr_Serialized_Setup_11 *
_serialized_setup_11_update(E_Randr_Serialized_Setup_11 *ss_11) _serialized_setup_11_update(E_Randr_Serialized_Setup_11 *ss_11)
{ {
Ecore_X_Randr_Screen_Size_MM *size; Ecore_X_Randr_Screen_Size_MM *size;
@ -56,7 +56,7 @@ _update_serialized_setup_11_failed_free_ss:
} }
//Free helper functions //Free helper functions
void void
_e_randr_serialized_setup_11_free(E_Randr_Serialized_Setup_11 *ss11) _e_randr_serialized_setup_11_free(E_Randr_Serialized_Setup_11 *ss11)
{ {
free(ss11); free(ss11);
@ -68,7 +68,7 @@ e_randr_11_serialized_setup_free(E_Randr_Serialized_Setup_11 *ss_11)
_e_randr_serialized_setup_11_free(ss_11); _e_randr_serialized_setup_11_free(ss_11);
} }
Eina_Bool Eina_Bool
_11_try_restore_configuration(void) _11_try_restore_configuration(void)
{ {
Ecore_X_Randr_Screen_Size_MM *stored_size, *size; Ecore_X_Randr_Screen_Size_MM *stored_size, *size;
@ -92,7 +92,7 @@ _11_try_restore_configuration(void)
return EINA_FALSE; return EINA_FALSE;
} }
void void
_11_store_configuration(E_Randr_Configuration_Store_Modifier modifier) _11_store_configuration(E_Randr_Configuration_Store_Modifier modifier)
{ {
if (e_config->randr_serialized_setup->serialized_setup_11) if (e_config->randr_serialized_setup->serialized_setup_11)

View File

@ -31,7 +31,7 @@ static const char *_POLICIES_STRINGS[] = {"ABOVE", "RIGHT", "BELOW", "LEFT", "CL
* @return array of E_Randr_Screen_Info_12 elements, or in case not all could * @return array of E_Randr_Screen_Info_12 elements, or in case not all could
* be created or parameter 'nrequested'==0, NULL * be created or parameter 'nrequested'==0, NULL
*/ */
static E_Randr_Screen_Info_12 * static E_Randr_Screen_Info_12 *
_screen_info_12_new(void) _screen_info_12_new(void)
{ {
E_Randr_Screen_Info_12 *randr_info_12 = NULL; E_Randr_Screen_Info_12 *randr_info_12 = NULL;
@ -65,7 +65,7 @@ _screen_info_12_new(void)
return randr_info_12; return randr_info_12;
} }
static Eina_Bool static Eina_Bool
_structs_init(void) _structs_init(void)
{ {
//Output stuff //Output stuff
@ -119,7 +119,7 @@ _structs_init(void)
//Set value / retrieval helper functions //Set value / retrieval helper functions
static void static void
_crtcs_init(void) _crtcs_init(void)
{ {
E_Randr_Crtc_Info *crtc = NULL; E_Randr_Crtc_Info *crtc = NULL;
@ -131,7 +131,7 @@ _crtcs_init(void)
_crtc_refs_set(crtc); _crtc_refs_set(crtc);
} }
static void static void
_outputs_init(void) _outputs_init(void)
{ {
E_Randr_Output_Info *output = NULL; E_Randr_Output_Info *output = NULL;
@ -147,7 +147,7 @@ _outputs_init(void)
} }
} }
static void static void
_screen_primary_output_assign(E_Randr_Output_Info *removed) _screen_primary_output_assign(E_Randr_Output_Info *removed)
{ {
Eina_List *iter; Eina_List *iter;
@ -173,7 +173,7 @@ _screen_primary_output_assign(E_Randr_Output_Info *removed)
/** /**
* @param screen_info the screen info to be freed. * @param screen_info the screen info to be freed.
*/ */
void void
_12_screen_info_free(E_Randr_Screen_Info_12 *screen_info) _12_screen_info_free(E_Randr_Screen_Info_12 *screen_info)
{ {
Ecore_X_Randr_Mode_Info *mode_info; Ecore_X_Randr_Mode_Info *mode_info;
@ -213,7 +213,7 @@ _12_screen_info_free(E_Randr_Screen_Info_12 *screen_info)
* *
* ******************************************** * ********************************************
*/ */
Ecore_X_Randr_Mode_Info * Ecore_X_Randr_Mode_Info *
_12_screen_info_mode_info_get(const Ecore_X_Randr_Mode mode) _12_screen_info_mode_info_get(const Ecore_X_Randr_Mode mode)
{ {
Eina_List *iter; Eina_List *iter;
@ -228,7 +228,7 @@ _12_screen_info_mode_info_get(const Ecore_X_Randr_Mode mode)
return NULL; return NULL;
} }
E_Randr_Output_Info * E_Randr_Output_Info *
_12_screen_info_output_info_get(const Ecore_X_Randr_Output output) _12_screen_info_output_info_get(const Ecore_X_Randr_Output output)
{ {
Eina_List *iter; Eina_List *iter;
@ -243,7 +243,7 @@ _12_screen_info_output_info_get(const Ecore_X_Randr_Output output)
return NULL; return NULL;
} }
E_Randr_Crtc_Info * E_Randr_Crtc_Info *
_12_screen_info_crtc_info_get(const Ecore_X_Randr_Crtc crtc) _12_screen_info_crtc_info_get(const Ecore_X_Randr_Crtc crtc)
{ {
Eina_List *iter; Eina_List *iter;
@ -258,7 +258,7 @@ _12_screen_info_crtc_info_get(const Ecore_X_Randr_Crtc crtc)
return NULL; return NULL;
} }
Eina_Bool Eina_Bool
_12_screen_info_edid_is_available(const E_Randr_Edid_Hash *hash) _12_screen_info_edid_is_available(const E_Randr_Edid_Hash *hash)
{ {
Eina_List *iter; Eina_List *iter;
@ -280,7 +280,7 @@ _12_screen_info_edid_is_available(const E_Randr_Edid_Hash *hash)
* returns a mode within a given list of modes that is gemetrically identical. * returns a mode within a given list of modes that is gemetrically identical.
* If none is found, NULL is returned. * If none is found, NULL is returned.
*/ */
static Ecore_X_Randr_Mode_Info * static Ecore_X_Randr_Mode_Info *
_mode_geo_identical_find(Eina_List *modes, Ecore_X_Randr_Mode_Info *mode) _mode_geo_identical_find(Eina_List *modes, Ecore_X_Randr_Mode_Info *mode)
{ {
Eina_List *iter; Eina_List *iter;
@ -300,7 +300,7 @@ _mode_geo_identical_find(Eina_List *modes, Ecore_X_Randr_Mode_Info *mode)
* *
***************************************************************** *****************************************************************
*/ */
Eina_Bool Eina_Bool
_12_screen_info_refresh(void) _12_screen_info_refresh(void)
{ {
EINA_SAFETY_ON_TRUE_RETURN_VAL((e_randr_screen_info.randr_version < ECORE_X_RANDR_1_2), EINA_FALSE); EINA_SAFETY_ON_TRUE_RETURN_VAL((e_randr_screen_info.randr_version < ECORE_X_RANDR_1_2), EINA_FALSE);
@ -323,7 +323,7 @@ _12_screen_info_refresh(void)
****************************************************************** ******************************************************************
*/ */
static Eina_Bool static Eina_Bool
_x_poll_cb(void *data __UNUSED__) _x_poll_cb(void *data __UNUSED__)
{ {
EINA_SAFETY_ON_NULL_RETURN_VAL(e_randr_screen_info.rrvd_info.randr_info_12, ECORE_CALLBACK_CANCEL); EINA_SAFETY_ON_NULL_RETURN_VAL(e_randr_screen_info.rrvd_info.randr_info_12, ECORE_CALLBACK_CANCEL);
@ -333,7 +333,7 @@ _x_poll_cb(void *data __UNUSED__)
return ECORE_CALLBACK_RENEW; return ECORE_CALLBACK_RENEW;
} }
void void
_12_event_listeners_add(void) _12_event_listeners_add(void)
{ {
EINA_SAFETY_ON_TRUE_RETURN(E_RANDR_12_NO); EINA_SAFETY_ON_TRUE_RETURN(E_RANDR_12_NO);
@ -358,7 +358,7 @@ _12_event_listeners_add(void)
* When the mode of a CRTC is changed only events 2 and 3 are triggered * When the mode of a CRTC is changed only events 2 and 3 are triggered
* *
*/ */
static Eina_Bool static Eina_Bool
_output_change_event_cb(void *data __UNUSED__, int type, void *ev) _output_change_event_cb(void *data __UNUSED__, int type, void *ev)
{ {
Ecore_X_Event_Randr_Output_Change *oce = (Ecore_X_Event_Randr_Output_Change*)ev; Ecore_X_Event_Randr_Output_Change *oce = (Ecore_X_Event_Randr_Output_Change*)ev;
@ -462,7 +462,7 @@ _output_change_event_cb(void *data __UNUSED__, int type, void *ev)
return ECORE_CALLBACK_RENEW; return ECORE_CALLBACK_RENEW;
} }
static Eina_Bool static Eina_Bool
_crtc_change_event_cb(void *data __UNUSED__, int type, void *ev) _crtc_change_event_cb(void *data __UNUSED__, int type, void *ev)
{ {
Ecore_X_Event_Randr_Crtc_Change *cce = (Ecore_X_Event_Randr_Crtc_Change*)ev; Ecore_X_Event_Randr_Crtc_Change *cce = (Ecore_X_Event_Randr_Crtc_Change*)ev;
@ -533,7 +533,7 @@ _crtc_change_event_cb(void *data __UNUSED__, int type, void *ev)
return ECORE_CALLBACK_RENEW; return ECORE_CALLBACK_RENEW;
} }
static Eina_Bool static Eina_Bool
_output_property_change_event_cb(void *data __UNUSED__, int type, void *ev) _output_property_change_event_cb(void *data __UNUSED__, int type, void *ev)
{ {
Ecore_X_Event_Randr_Output_Property_Notify *opce = (Ecore_X_Event_Randr_Output_Property_Notify*)ev; Ecore_X_Event_Randr_Output_Property_Notify *opce = (Ecore_X_Event_Randr_Output_Property_Notify*)ev;
@ -561,7 +561,7 @@ _output_property_change_event_cb(void *data __UNUSED__, int type, void *ev)
* - try to share the output of a CRTC with other outputs already using it * - try to share the output of a CRTC with other outputs already using it
* (clone). * (clone).
*/ */
static Eina_Bool static Eina_Bool
_try_enable_output(E_Randr_Output_Info *output_info, Eina_Bool force) _try_enable_output(E_Randr_Output_Info *output_info, Eina_Bool force)
{ {
Eina_List *iter, *outputs_list = NULL, *common_modes = NULL; Eina_List *iter, *outputs_list = NULL, *common_modes = NULL;
@ -796,7 +796,7 @@ _try_enable_output(E_Randr_Output_Info *output_info, Eina_Bool force)
return ret; return ret;
} }
void void
_12_event_listeners_remove(void) _12_event_listeners_remove(void)
{ {
Ecore_Event_Handler *_event_handler = NULL; Ecore_Event_Handler *_event_handler = NULL;

View File

@ -73,7 +73,7 @@ _crtc_refs_set(E_Randr_Crtc_Info *crtc_info)
* given, a struct with only the xid will be set * given, a struct with only the xid will be set
* @return E_Randr_Crtc_Info element * @return E_Randr_Crtc_Info element
*/ */
E_Randr_Crtc_Info * E_Randr_Crtc_Info *
_crtc_info_new(Ecore_X_Randr_Crtc crtc) _crtc_info_new(Ecore_X_Randr_Crtc crtc)
{ {
E_Randr_Crtc_Info *crtc_info = NULL; E_Randr_Crtc_Info *crtc_info = NULL;
@ -113,7 +113,7 @@ _crtc_info_new(Ecore_X_Randr_Crtc crtc)
/** /**
* @param crtc_info the crtc info to be freed. * @param crtc_info the crtc info to be freed.
*/ */
void void
_crtc_info_free(E_Randr_Crtc_Info *crtc_info) _crtc_info_free(E_Randr_Crtc_Info *crtc_info)
{ {
EINA_SAFETY_ON_NULL_RETURN(crtc_info); EINA_SAFETY_ON_NULL_RETURN(crtc_info);
@ -207,7 +207,7 @@ _crtc_outputs_mode_max_set(E_Randr_Crtc_Info *crtc_info)
* -bottom * -bottom
* most CRTC and return it. * most CRTC and return it.
*/ */
const E_Randr_Crtc_Info * const E_Randr_Crtc_Info *
_crtc_according_to_policy_get(E_Randr_Crtc_Info *but, Ecore_X_Randr_Output_Policy policy) _crtc_according_to_policy_get(E_Randr_Crtc_Info *but, Ecore_X_Randr_Output_Policy policy)
{ {
Eina_List *iter, *possible_crtcs = NULL; Eina_List *iter, *possible_crtcs = NULL;

View File

@ -163,7 +163,7 @@ _output_refs_set(E_Randr_Output_Info *output_info)
output_info->monitor = NULL; output_info->monitor = NULL;
} }
Ecore_X_Randr_Output * Ecore_X_Randr_Output *
_outputs_to_array(Eina_List *outputs_info) _outputs_to_array(Eina_List *outputs_info)
{ {
Ecore_X_Randr_Output *ret = NULL; Ecore_X_Randr_Output *ret = NULL;
@ -223,7 +223,7 @@ Eina_List
return common_modes; return common_modes;
} }
static int static int
_modes_size_sort_cb(const void *d1, const void *d2) _modes_size_sort_cb(const void *d1, const void *d2)
{ {
Ecore_X_Randr_Mode_Info *mode1 = ((Ecore_X_Randr_Mode_Info *)d1), *mode2 = ((Ecore_X_Randr_Mode_Info *)d2); Ecore_X_Randr_Mode_Info *mode1 = ((Ecore_X_Randr_Mode_Info *)d1), *mode2 = ((Ecore_X_Randr_Mode_Info *)d2);

View File

@ -46,7 +46,7 @@ static inline Ecore_X_Randr_Mode_Info *_find_matching_mode_info(Ecore_X_Randr_Mo
*/ */
//"Free" helper functions //"Free" helper functions
void void
_serialized_output_free(E_Randr_Serialized_Output *so) _serialized_output_free(E_Randr_Serialized_Output *so)
{ {
EINA_SAFETY_ON_NULL_RETURN(so); EINA_SAFETY_ON_NULL_RETURN(so);
@ -56,7 +56,7 @@ _serialized_output_free(E_Randr_Serialized_Output *so)
free(so); free(so);
} }
void void
_serialized_output_policy_free(E_Randr_Serialized_Output_Policy *sop) _serialized_output_policy_free(E_Randr_Serialized_Output_Policy *sop)
{ {
EINA_SAFETY_ON_NULL_RETURN(sop); EINA_SAFETY_ON_NULL_RETURN(sop);
@ -71,7 +71,7 @@ e_randr_12_serialized_output_policy_free(E_Randr_Serialized_Output_Policy *polic
_serialized_output_policy_free(policy); _serialized_output_policy_free(policy);
} }
void void
_mode_info_free(Ecore_X_Randr_Mode_Info *mode_info) _mode_info_free(Ecore_X_Randr_Mode_Info *mode_info)
{ {
EINA_SAFETY_ON_NULL_RETURN(mode_info); EINA_SAFETY_ON_NULL_RETURN(mode_info);
@ -80,7 +80,7 @@ _mode_info_free(Ecore_X_Randr_Mode_Info *mode_info)
free(mode_info); free(mode_info);
} }
void void
_serialized_crtc_free(E_Randr_Serialized_Crtc *sc) _serialized_crtc_free(E_Randr_Serialized_Crtc *sc)
{ {
E_Randr_Serialized_Output *so; E_Randr_Serialized_Output *so;
@ -165,7 +165,7 @@ E_Randr_Edid_Hash
return edid_hash; return edid_hash;
} }
Eina_List * Eina_List *
_outputs_policies_list_new(Eina_List *outputs) _outputs_policies_list_new(Eina_List *outputs)
{ {
E_Randr_Serialized_Output_Policy *sop; E_Randr_Serialized_Output_Policy *sop;
@ -188,7 +188,7 @@ _outputs_policies_list_new(Eina_List *outputs)
return list; return list;
} }
E_Randr_Serialized_Output * E_Randr_Serialized_Output *
_serialized_output_new(E_Randr_Output_Info *output_info) _serialized_output_new(E_Randr_Output_Info *output_info)
{ {
E_Randr_Serialized_Output *so; E_Randr_Serialized_Output *so;
@ -212,7 +212,7 @@ _serialized_output_new(E_Randr_Output_Info *output_info)
return so; return so;
} }
E_Randr_Serialized_Crtc * E_Randr_Serialized_Crtc *
_serialized_crtc_new(E_Randr_Crtc_Info *crtc_info) _serialized_crtc_new(E_Randr_Crtc_Info *crtc_info)
{ {
E_Randr_Serialized_Crtc *sc = NULL; E_Randr_Serialized_Crtc *sc = NULL;
@ -244,7 +244,7 @@ _serialized_crtc_new(E_Randr_Crtc_Info *crtc_info)
return sc; return sc;
} }
E_Randr_Serialized_Setup_12 * E_Randr_Serialized_Setup_12 *
_12_serialized_setup_new(void) _12_serialized_setup_new(void)
{ {
E_Randr_Serialized_Setup_12 *ss = NULL; E_Randr_Serialized_Setup_12 *ss = NULL;
@ -290,7 +290,7 @@ _12_serialized_setup_new(void)
//Update (also retrieval) helper functions //Update (also retrieval) helper functions
E_Randr_Serialized_Setup_12 * E_Randr_Serialized_Setup_12 *
_matching_serialized_setup_get(Eina_List *setups_12) _matching_serialized_setup_get(Eina_List *setups_12)
{ {
E_Randr_Serialized_Setup_12 *ss_12; E_Randr_Serialized_Setup_12 *ss_12;
@ -329,7 +329,7 @@ _setup_12_skip:
return NULL; return NULL;
} }
Eina_List * Eina_List *
_outputs_policies_update(Eina_List *sops) _outputs_policies_update(Eina_List *sops)
{ {
E_Randr_Serialized_Output_Policy *sop; E_Randr_Serialized_Output_Policy *sop;
@ -342,7 +342,7 @@ _outputs_policies_update(Eina_List *sops)
return _outputs_policies_list_new(e_randr_screen_info.rrvd_info.randr_info_12->outputs); return _outputs_policies_list_new(e_randr_screen_info.rrvd_info.randr_info_12->outputs);
} }
Eina_List * Eina_List *
_12_serialized_setup_update(Eina_List *setups_12) _12_serialized_setup_update(Eina_List *setups_12)
{ {
E_Randr_Serialized_Setup_12 *ss_12; E_Randr_Serialized_Setup_12 *ss_12;
@ -365,7 +365,7 @@ _12_serialized_setup_update(Eina_List *setups_12)
return setups_12; return setups_12;
} }
void void
_12_policies_restore(void) _12_policies_restore(void)
{ {
E_Randr_Output_Info *output; E_Randr_Output_Info *output;
@ -390,7 +390,7 @@ _12_policies_restore(void)
} }
} }
Eina_Bool Eina_Bool
_12_try_restore_configuration(void) _12_try_restore_configuration(void)
{ {
E_Randr_Serialized_Setup_12 *ss_12; E_Randr_Serialized_Setup_12 *ss_12;
@ -460,7 +460,7 @@ _12_try_restore_configuration(void)
return ret; return ret;
} }
void void
_12_serialized_setup_free(E_Randr_Serialized_Setup_12 *ss_12) _12_serialized_setup_free(E_Randr_Serialized_Setup_12 *ss_12)
{ {
E_Randr_Serialized_Crtc *sc; E_Randr_Serialized_Crtc *sc;
@ -484,7 +484,7 @@ e_randr_12_serialized_setup_free(E_Randr_Serialized_Setup_12 *ss_12)
_12_serialized_setup_free(ss_12); _12_serialized_setup_free(ss_12);
} }
void void
_12_store_configuration(E_Randr_Configuration_Store_Modifier modifier) _12_store_configuration(E_Randr_Configuration_Store_Modifier modifier)
{ {
if (modifier & (E_RANDR_CONFIGURATION_STORE_RESOLUTIONS | E_RANDR_CONFIGURATION_STORE_ARRANGEMENT | E_RANDR_CONFIGURATION_STORE_ORIENTATIONS)) if (modifier & (E_RANDR_CONFIGURATION_STORE_RESOLUTIONS | E_RANDR_CONFIGURATION_STORE_ARRANGEMENT | E_RANDR_CONFIGURATION_STORE_ORIENTATIONS))
@ -502,7 +502,7 @@ _12_store_configuration(E_Randr_Configuration_Store_Modifier modifier)
//Retrievel functions for the current e_randr_screen_info context //Retrievel functions for the current e_randr_screen_info context
// Find entities for restoration in current e_randr_screen_info context // Find entities for restoration in current e_randr_screen_info context
static E_Randr_Crtc_Info * static E_Randr_Crtc_Info *
_find_matching_crtc(E_Randr_Serialized_Crtc *sc) _find_matching_crtc(E_Randr_Serialized_Crtc *sc)
{ {
EINA_SAFETY_ON_NULL_RETURN_VAL(sc, NULL); EINA_SAFETY_ON_NULL_RETURN_VAL(sc, NULL);
@ -518,7 +518,7 @@ _find_matching_crtc(E_Randr_Serialized_Crtc *sc)
* @return List of E_Randr_Output* elements or NULL, if not all outputs could be * @return List of E_Randr_Output* elements or NULL, if not all outputs could be
* found or monitors are connected to different outputs * found or monitors are connected to different outputs
*/ */
static Eina_List * static Eina_List *
_find_matching_outputs(Eina_List *sois) _find_matching_outputs(Eina_List *sois)
{ {
Eina_List *r_output_iter, *s_output_iter, *list = NULL; Eina_List *r_output_iter, *s_output_iter, *list = NULL;
@ -548,7 +548,7 @@ _find_matching_outputs(Eina_List *sois)
return list; return list;
} }
static Ecore_X_Randr_Mode_Info * static Ecore_X_Randr_Mode_Info *
_find_matching_mode_info(Ecore_X_Randr_Mode_Info *mode) _find_matching_mode_info(Ecore_X_Randr_Mode_Info *mode)
{ {
Eina_List *iter; Eina_List *iter;
@ -579,7 +579,7 @@ _find_matching_mode_info(Ecore_X_Randr_Mode_Info *mode)
return NULL; return NULL;
} }
static int static int
_sort_by_number_of_edids(const void *d1, const void *d2) _sort_by_number_of_edids(const void *d1, const void *d2)
{ {
const E_Randr_Serialized_Setup_12 *ss1 = (const E_Randr_Serialized_Setup_12*)d1; const E_Randr_Serialized_Setup_12 *ss1 = (const E_Randr_Serialized_Setup_12*)d1;

View File

@ -12,13 +12,13 @@
********************************************************************** **********************************************************************
*/ */
E_Randr_Serialized_Setup * E_Randr_Serialized_Setup *
_new_serialized_setup(void) _new_serialized_setup(void)
{ {
return E_NEW(E_Randr_Serialized_Setup, 1); return E_NEW(E_Randr_Serialized_Setup, 1);
} }
EAPI void EAPI void
e_randr_store_configuration(E_Randr_Configuration_Store_Modifier modifier) e_randr_store_configuration(E_Randr_Configuration_Store_Modifier modifier)
{ {
if (!e_config->randr_serialized_setup) if (!e_config->randr_serialized_setup)

View File

@ -139,7 +139,7 @@ _arrangement_widget_update(void)
e_layout_thaw(area); e_layout_thaw(area);
} }
Eina_Bool Eina_Bool
arrangement_widget_create_data(E_Config_Dialog_Data *data) arrangement_widget_create_data(E_Config_Dialog_Data *data)
{ {
Eina_List *iter; Eina_List *iter;