[gtk+/gtk-3-22] progressbar: Remove useless if statement
- From: Daniel Boles <dboles src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-3-22] progressbar: Remove useless if statement
- Date: Mon, 20 Mar 2017 20:47:01 +0000 (UTC)
commit d689ee7d7e105a9bd82259176cd97a2c71bd427a
Author: Timm Bäder <mail baedert org>
Date: Mon Mar 20 09:22:13 2017 +0100
progressbar: Remove useless if statement
Both the if and the else block contained exactly the same code.
gtk/gtkprogressbar.c | 29 +++++------------------------
1 files changed, 5 insertions(+), 24 deletions(-)
---
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c
index 0ea6692..8f1301d 100644
--- a/gtk/gtkprogressbar.c
+++ b/gtk/gtkprogressbar.c
@@ -1260,12 +1260,10 @@ gtk_progress_bar_act_mode_enter (GtkProgressBar *pbar)
{
GtkProgressBarPrivate *priv = pbar->priv;
GtkWidget *widget = GTK_WIDGET (pbar);
- GtkOrientation orientation;
gboolean inverted;
gtk_css_gadget_add_class (priv->progress_gadget, GTK_STYLE_CLASS_PULSE);
- orientation = priv->orientation;
inverted = priv->inverted;
if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
{
@@ -1274,32 +1272,15 @@ gtk_progress_bar_act_mode_enter (GtkProgressBar *pbar)
}
/* calculate start pos */
-
- if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ if (!inverted)
{
- if (!inverted)
- {
- priv->activity_pos = 0.0;
- priv->activity_dir = 0;
- }
- else
- {
- priv->activity_pos = 1.0;
- priv->activity_dir = 1;
- }
+ priv->activity_pos = 0.0;
+ priv->activity_dir = 0;
}
else
{
- if (!inverted)
- {
- priv->activity_pos = 0.0;
- priv->activity_dir = 0;
- }
- else
- {
- priv->activity_pos = 1.0;
- priv->activity_dir = 1;
- }
+ priv->activity_pos = 1.0;
+ priv->activity_dir = 1;
}
update_node_classes (pbar);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]