mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
cleanup: Remove duplicate semicolons in C code
No functional change, it just hurts my eyes when reading the code. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1385
This commit is contained in:
parent
c7d14244b1
commit
d0ee02fae7
@ -5326,7 +5326,7 @@ clutter_text_set_selection_bound (ClutterText *self,
|
|||||||
|
|
||||||
if (priv->selection_bound != selection_bound)
|
if (priv->selection_bound != selection_bound)
|
||||||
{
|
{
|
||||||
gint len = clutter_text_buffer_get_length (get_buffer (self));;
|
gint len = clutter_text_buffer_get_length (get_buffer (self));
|
||||||
|
|
||||||
if (selection_bound < 0 || selection_bound >= len)
|
if (selection_bound < 0 || selection_bound >= len)
|
||||||
priv->selection_bound = -1;
|
priv->selection_bound = -1;
|
||||||
|
@ -325,7 +325,7 @@ foreach_clamped_region (CoglMetaTexture *meta_texture,
|
|||||||
if (*tx_1 < 0)
|
if (*tx_1 < 0)
|
||||||
{
|
{
|
||||||
clamp_data.start = *tx_1;
|
clamp_data.start = *tx_1;
|
||||||
clamp_data.end = MIN (0, *tx_2);;
|
clamp_data.end = MIN (0, *tx_2);
|
||||||
cogl_meta_texture_foreach_in_region (meta_texture,
|
cogl_meta_texture_foreach_in_region (meta_texture,
|
||||||
half_texel_width, *ty_1,
|
half_texel_width, *ty_1,
|
||||||
half_texel_width, *ty_2,
|
half_texel_width, *ty_2,
|
||||||
@ -377,7 +377,7 @@ foreach_clamped_region (CoglMetaTexture *meta_texture,
|
|||||||
if (*ty_1 < 0)
|
if (*ty_1 < 0)
|
||||||
{
|
{
|
||||||
clamp_data.start = *ty_1;
|
clamp_data.start = *ty_1;
|
||||||
clamp_data.end = MIN (0, *ty_2);;
|
clamp_data.end = MIN (0, *ty_2);
|
||||||
cogl_meta_texture_foreach_in_region (meta_texture,
|
cogl_meta_texture_foreach_in_region (meta_texture,
|
||||||
*tx_1, half_texel_height,
|
*tx_1, half_texel_height,
|
||||||
*tx_2, half_texel_height,
|
*tx_2, half_texel_height,
|
||||||
@ -396,7 +396,7 @@ foreach_clamped_region (CoglMetaTexture *meta_texture,
|
|||||||
/* Handle any bottom clamped region */
|
/* Handle any bottom clamped region */
|
||||||
if (*ty_2 > max_t_coord)
|
if (*ty_2 > max_t_coord)
|
||||||
{
|
{
|
||||||
clamp_data.start = MAX (max_t_coord, *ty_1);;
|
clamp_data.start = MAX (max_t_coord, *ty_1);
|
||||||
clamp_data.end = *ty_2;
|
clamp_data.end = *ty_2;
|
||||||
cogl_meta_texture_foreach_in_region (meta_texture,
|
cogl_meta_texture_foreach_in_region (meta_texture,
|
||||||
*tx_1,
|
*tx_1,
|
||||||
|
@ -317,7 +317,7 @@ handle_start_element (GMarkupParseContext *context,
|
|||||||
}
|
}
|
||||||
else if (g_str_equal (element_name, "monitor"))
|
else if (g_str_equal (element_name, "monitor"))
|
||||||
{
|
{
|
||||||
parser->current_monitor_config = g_new0 (MetaMonitorConfig, 1);;
|
parser->current_monitor_config = g_new0 (MetaMonitorConfig, 1);
|
||||||
|
|
||||||
parser->state = STATE_MONITOR;
|
parser->state = STATE_MONITOR;
|
||||||
}
|
}
|
||||||
|
@ -1186,7 +1186,7 @@ meta_monitor_manager_handle_get_resources (MetaDBusDisplayConfig *skeleton,
|
|||||||
{
|
{
|
||||||
MetaCrtcMode *mode = l->data;
|
MetaCrtcMode *mode = l->data;
|
||||||
const MetaCrtcModeInfo *crtc_mode_info =
|
const MetaCrtcModeInfo *crtc_mode_info =
|
||||||
meta_crtc_mode_get_info (mode);;
|
meta_crtc_mode_get_info (mode);
|
||||||
|
|
||||||
g_variant_builder_add (&mode_builder, "(uxuudu)",
|
g_variant_builder_add (&mode_builder, "(uxuudu)",
|
||||||
i, /* ID */
|
i, /* ID */
|
||||||
|
@ -1101,7 +1101,7 @@ meta_screen_cast_stream_src_set_property (GObject *object,
|
|||||||
{
|
{
|
||||||
case PROP_STREAM:
|
case PROP_STREAM:
|
||||||
priv->stream = g_value_get_object (value);
|
priv->stream = g_value_get_object (value);
|
||||||
break;;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
}
|
}
|
||||||
|
@ -554,7 +554,7 @@ on_udev_device_added (MetaUdev *udev,
|
|||||||
|
|
||||||
device_path = g_udev_device_get_device_file (device);
|
device_path = g_udev_device_get_device_file (device);
|
||||||
|
|
||||||
gpus = meta_backend_get_gpus (backend);;
|
gpus = meta_backend_get_gpus (backend);
|
||||||
for (l = gpus; l; l = l->next)
|
for (l = gpus; l; l = l->next)
|
||||||
{
|
{
|
||||||
MetaGpuKms *gpu_kms = l->data;
|
MetaGpuKms *gpu_kms = l->data;
|
||||||
|
@ -483,7 +483,7 @@ update_states_in_impl (MetaKmsImpl *impl,
|
|||||||
gpointer user_data,
|
gpointer user_data,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
MetaKms *kms = meta_kms_impl_get_kms (impl);;
|
MetaKms *kms = meta_kms_impl_get_kms (impl);
|
||||||
|
|
||||||
meta_kms_update_states_in_impl (kms);
|
meta_kms_update_states_in_impl (kms);
|
||||||
|
|
||||||
|
@ -912,7 +912,7 @@ meta_background_get_texture (MetaBackground *self,
|
|||||||
(1 - self->blend_factor),
|
(1 - self->blend_factor),
|
||||||
(1 - self->blend_factor),
|
(1 - self->blend_factor),
|
||||||
(1 - self->blend_factor),
|
(1 - self->blend_factor),
|
||||||
(1 - self->blend_factor));;
|
(1 - self->blend_factor));
|
||||||
cogl_pipeline_set_layer_texture (pipeline, 0, texture1);
|
cogl_pipeline_set_layer_texture (pipeline, 0, texture1);
|
||||||
cogl_pipeline_set_layer_wrap_mode (pipeline, 0, get_wrap_mode (self->style));
|
cogl_pipeline_set_layer_wrap_mode (pipeline, 0, get_wrap_mode (self->style));
|
||||||
cogl_pipeline_set_layer_max_mipmap_level (pipeline, 0, mipmap_level);
|
cogl_pipeline_set_layer_max_mipmap_level (pipeline, 0, mipmap_level);
|
||||||
|
@ -758,7 +758,7 @@ try_flip_window_position (MetaWindow *window,
|
|||||||
int *rel_y,
|
int *rel_y,
|
||||||
MetaRectangle *intersection)
|
MetaRectangle *intersection)
|
||||||
{
|
{
|
||||||
MetaPlacementRule flipped_rule = *placement_rule;;
|
MetaPlacementRule flipped_rule = *placement_rule;
|
||||||
MetaRectangle flipped_rect;
|
MetaRectangle flipped_rect;
|
||||||
MetaRectangle flipped_intersection;
|
MetaRectangle flipped_intersection;
|
||||||
int flipped_rel_x;
|
int flipped_rel_x;
|
||||||
|
@ -2833,7 +2833,7 @@ meta_window_maximize_internal (MetaWindow *window,
|
|||||||
window->maximized_vertically || maximize_vertically;
|
window->maximized_vertically || maximize_vertically;
|
||||||
|
|
||||||
/* Update the edge constraints */
|
/* Update the edge constraints */
|
||||||
update_edge_constraints (window);;
|
update_edge_constraints (window);
|
||||||
|
|
||||||
meta_window_recalc_features (window);
|
meta_window_recalc_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
|
@ -495,7 +495,7 @@ meta_ui_frame_attach_style (MetaUIFrame *frame)
|
|||||||
|
|
||||||
variant = frame->meta_window->gtk_theme_variant;
|
variant = frame->meta_window->gtk_theme_variant;
|
||||||
if (variant == NULL)
|
if (variant == NULL)
|
||||||
variant = get_global_theme_variant (frame->frames);;
|
variant = get_global_theme_variant (frame->frames);
|
||||||
|
|
||||||
if (variant == NULL || *variant == '\0')
|
if (variant == NULL || *variant == '\0')
|
||||||
frame->style_info = meta_style_info_ref (frames->normal_style);
|
frame->style_info = meta_style_info_ref (frames->normal_style);
|
||||||
|
Loading…
Reference in New Issue
Block a user