X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Flttvwindow%2Flttvwindow%2Fgtkdirsel.c;h=5df585afabd122687772eb73c79fa83384d69e4c;hb=b1053af5f2ccec64807fa21d22bb62bfc05873a1;hp=dfb747a19412c2eb69a652d08021bef1f65ab3b7;hpb=7cb029016334bf3d09a3e9344962a0738220ffce;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/gtkdirsel.c b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/gtkdirsel.c index dfb747a1..5df585af 100644 --- a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/gtkdirsel.c +++ b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/gtkdirsel.c @@ -3730,7 +3730,7 @@ find_completion_dir (gchar *text_to_complete, for (i = 0; i < dir->sent->entry_count; i += 1) { if (dir->sent->entries[i].is_dir && - _gtk_fnmatch (pat_buf, dir->sent->entries[i].entry_name)) + _gtk_fnmatch (pat_buf, dir->sent->entries[i].entry_name,1)) { if (found) { @@ -3880,7 +3880,8 @@ attempt_dir_completion (CompletionState *cmpl_state) { if (dir->sent->entries[dir->cmpl_index].is_dir) { - if (_gtk_fnmatch (pat_buf, dir->sent->entries[dir->cmpl_index].entry_name)) + if (_gtk_fnmatch (pat_buf, + dir->sent->entries[dir->cmpl_index].entry_name,1)) { CompletionDir* new_dir; @@ -3928,7 +3929,7 @@ attempt_dir_completion (CompletionState *cmpl_state) append_completion_text (dir->sent->entries[dir->cmpl_index].entry_name, cmpl_state); cmpl_state->the_completion.is_a_completion = - _gtk_fnmatch (pat_buf, dir->sent->entries[dir->cmpl_index].entry_name); + _gtk_fnmatch (pat_buf, dir->sent->entries[dir->cmpl_index].entry_name,1); cmpl_state->the_completion.is_directory = dir->sent->entries[dir->cmpl_index].is_dir; if (dir->sent->entries[dir->cmpl_index].is_dir)