[gtk+] css-editor: Remove unused if statement



commit a3bada37fbefd84738622713ccd542a27de46b24
Author: Timm Bäder <mail baedert org>
Date:   Mon Mar 20 15:01:28 2017 +0100

    css-editor: Remove unused if statement
    
    The static local is set to NULL and never set to anything else, so we
    never use it anyway.

 gtk/inspector/css-editor.c |   23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)
---
diff --git a/gtk/inspector/css-editor.c b/gtk/inspector/css-editor.c
index ad77e02..52417be 100644
--- a/gtk/inspector/css-editor.c
+++ b/gtk/inspector/css-editor.c
@@ -107,21 +107,14 @@ G_DEFINE_TYPE_WITH_PRIVATE (GtkInspectorCssEditor, gtk_inspector_css_editor, GTK
 static void
 set_initial_text (GtkInspectorCssEditor *ce)
 {
-  const gchar *text = NULL;
-
-  if (text)
-    gtk_text_buffer_set_text (GTK_TEXT_BUFFER (ce->priv->text), text, -1);
-  else
-    {
-      gchar *initial_text;
-      initial_text = g_strconcat ("/*\n",
-                                  _("You can type here any CSS rule recognized by GTK+."), "\n",
-                                  _("You can temporarily disable this custom CSS by clicking on the “Pause” 
button above."), "\n\n",
-                                  _("Changes are applied instantly and globally, for the whole 
application."), "\n",
-                                  "*/\n\n", NULL);
-      gtk_text_buffer_set_text (GTK_TEXT_BUFFER (ce->priv->text), initial_text, -1);
-      g_free (initial_text);
-    }
+  gchar *initial_text;
+  initial_text = g_strconcat ("/*\n",
+                              _("You can type here any CSS rule recognized by GTK+."), "\n",
+                              _("You can temporarily disable this custom CSS by clicking on the “Pause” 
button above."), "\n\n",
+                              _("Changes are applied instantly and globally, for the whole application."), 
"\n",
+                              "*/\n\n", NULL);
+  gtk_text_buffer_set_text (GTK_TEXT_BUFFER (ce->priv->text), initial_text, -1);
+  g_free (initial_text);
 }
 
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]