Commit cc415177 authored by Victor Ananjevsky's avatar Victor Ananjevsky

cleanup code

parent 2be2c623
...@@ -610,34 +610,34 @@ get_bool_val (gchar *str) ...@@ -610,34 +610,34 @@ get_bool_val (gchar *str)
gchar * gchar *
print_bool_val (gboolean val) print_bool_val (gboolean val)
{ {
gchar *ret = ""; gchar *rv = "";
switch (options.common_data.bool_fmt) switch (options.common_data.bool_fmt)
{ {
case YAD_BOOL_FMT_UT: case YAD_BOOL_FMT_UT:
ret = val ? "TRUE" : "FALSE"; rv = val ? "TRUE" : "FALSE";
break; break;
case YAD_BOOL_FMT_UY: case YAD_BOOL_FMT_UY:
ret = val ? "YES" : "NO"; rv = val ? "YES" : "NO";
break; break;
case YAD_BOOL_FMT_UO: case YAD_BOOL_FMT_UO:
ret = val ? "ON" : "OFF"; rv = val ? "ON" : "OFF";
break; break;
case YAD_BOOL_FMT_LT: case YAD_BOOL_FMT_LT:
ret = val ? "true" : "false"; rv = val ? "true" : "false";
break; break;
case YAD_BOOL_FMT_LY: case YAD_BOOL_FMT_LY:
ret = val ? "yes" : "no"; rv = val ? "yes" : "no";
break; break;
case YAD_BOOL_FMT_LO: case YAD_BOOL_FMT_LO:
ret = val ? "on" : "off"; rv = val ? "on" : "off";
break; break;
case YAD_BOOL_FMT_1: case YAD_BOOL_FMT_1:
ret = val ? "1" : "0"; rv = val ? "1" : "0";
break; break;
} }
return ret; return rv;
} }
typedef struct { typedef struct {
...@@ -857,9 +857,6 @@ create_search_bar () ...@@ -857,9 +857,6 @@ create_search_bar ()
sb = g_new0 (YadSearchBar, 1); sb = g_new0 (YadSearchBar, 1);
sb->new_search = TRUE; sb->new_search = TRUE;
if (!sb)
return NULL;
sb->bar = gtk_search_bar_new (); sb->bar = gtk_search_bar_new ();
gtk_search_bar_set_show_close_button (GTK_SEARCH_BAR (sb->bar), TRUE); gtk_search_bar_set_show_close_button (GTK_SEARCH_BAR (sb->bar), TRUE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment