Skip to content

Commit b812140

Browse files
committed
[FIX] : fix warning with GCC who was detecting a comment /* in a string himself in a comment zone..
1 parent 96d4d58 commit b812140

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ImGuiFileDialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ if (igButton("Open File", buttonSize))
381381
IGFD_OpenDialog(cfiledialog,
382382
"filedlg", // dialog key (make it possible to have different treatment reagrding the dialog key
383383
"Open a File", // dialog title
384-
"c files(*.c/*.h){.c,.h}", // dialog filter syntax : simple => .h,.c,.pp, etc and collections : text1{filter0,filter1,filter2}, text2{filter0,filter1,filter2}, etc..
384+
"c files(*.c *.h){.c,.h}", // dialog filter syntax : simple => .h,.c,.pp, etc and collections : text1{filter0,filter1,filter2}, text2{filter0,filter1,filter2}, etc..
385385
".", // base directory for files scan
386386
"", // base filename
387387
0, // a fucntion for display a right pane if you want

0 commit comments

Comments
 (0)