libgnt/libgnt

f0b34eb0e27d
Parents 81827d41b859
Children d8762e1bb08e
fix typo to check for correct instance type

Testing Done:
None besides running `ninja`. This is RR 793 for the default branch. See notes there. There seems to be no Sounds menu in Finch3 anymore.

Reviewed at https://reviews.imfreedom.org/r/813/
--- a/gntcombobox.c Wed May 26 16:49:10 2021 -0500
+++ b/gntcombobox.c Thu Jul 15 00:34:50 2021 -0500
@@ -365,7 +365,7 @@
GntWidget *
gnt_combo_box_get_dropdown(GntComboBox *box)
{
- g_return_val_if_fail(GNT_IS_BOX(box), NULL);
+ g_return_val_if_fail(GNT_IS_COMBO_BOX(box), NULL);
return box->dropdown;
}