Codebase list xapp / b492c2a
New upstream version 2.2.13 Fabio Fantoni 1 year, 9 months ago
2 changed file(s) with 9 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
17511751 if (priv->search_iter)
17521752 {
17531753 priv->current_category = NULL;
1754
1755 if (g_strrstr (priv->search_iter->data, name_string))
1754 gchar *casefolded = g_utf8_casefold (priv->search_iter->data, -1);
1755
1756 if (g_strrstr (casefolded, name_string))
17561757 {
17571758 NamedIconInfoLoadCallbackInfo *callback_info;
17581759 cairo_surface_t *surface;
17851786
17861787 chunk_count++;
17871788 }
1789
1790 g_free (casefolded);
17881791 }
17891792 else
17901793 {
18351838 }
18361839 else
18371840 {
1838 g_free (priv->current_text);
1839 priv->current_text = g_utf8_strdown (search_text, -1);
1841 g_clear_pointer (&priv->current_text, g_free);
18401842
18411843 gtk_widget_show (priv->loading_bar);
18421844
18461848 {
18471849 if (priv->allow_paths)
18481850 {
1851 priv->current_text = g_strdup (search_text);
18491852 search_path (dialog, priv->current_text, priv->search_icon_store);
18501853 }
18511854 }
18521855 else
18531856 {
1857 priv->current_text = g_utf8_casefold (search_text, -1);
18541858 search_icon_name (dialog, priv->current_text, priv->search_icon_store);
18551859 }
18561860 }
00 project('xapp',
11 'c',
2 version : '2.2.12',
2 version : '2.2.13',
33 default_options : [ 'buildtype=debugoptimized' ],
44 )
55