[gnome-shell] st/label: Don't guard against NULL text



commit 329a28630312040e3a9da118772fb4452dc01717
Author: Florian Müllner <fmuellner gnome org>
Date:   Fri Sep 2 18:46:13 2022 +0200

    st/label: Don't guard against NULL text
    
    Commit 9168f6055e marked the parameter as nullable, which is in
    conflict with the precondition check. But given that NULL is
    valid for the underlying ClutterText (and GtkLabel accepts it
    as well), there's no strong argument for disallowing NULL, so
    remove the precondition check.
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2465>

 src/st/st-label.c | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/src/st/st-label.c b/src/st/st-label.c
index e9893fe01e..fe77743c44 100644
--- a/src/st/st-label.c
+++ b/src/st/st-label.c
@@ -409,7 +409,6 @@ st_label_set_text (StLabel     *label,
   ClutterText *ctext;
 
   g_return_if_fail (ST_IS_LABEL (label));
-  g_return_if_fail (text != NULL);
 
   priv = label->priv;
   ctext = CLUTTER_TEXT (priv->label);


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