diff options
author | Jonathan Yap <none@none> | 2012-02-07 10:25:18 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2012-02-07 10:25:18 -0500 |
commit | 449d2b106fd18bfb6f0e516eaedd395de18c7608 (patch) | |
tree | e282cb5f7908c23eba19947fa00ccef929861ced /indra/newview/llfilepicker.cpp | |
parent | bb5dc767f7017089368d5164cd16cf983282b9de (diff) |
STORM-1803 Fix syntax error that the Windows compiler did not complain about
Diffstat (limited to 'indra/newview/llfilepicker.cpp')
-rw-r--r-- | indra/newview/llfilepicker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp index b426bcf84b..f741b9b810 100644 --- a/indra/newview/llfilepicker.cpp +++ b/indra/newview/llfilepicker.cpp @@ -1203,7 +1203,7 @@ static std::string add_anim_filter_to_gtkchooser(GtkWindow *picker) GtkFileFilter *gfilter = gtk_file_filter_new(); gtk_file_filter_add_pattern(gfilter, "*.bvh"); gtk_file_filter_add_pattern(gfilter, "*.anim"); - std::string filtername = LLTrans::getString("animation_files") + " (*.bvh; *.anim)"); + std::string filtername = LLTrans::getString("animation_files") + " (*.bvh; *.anim)"; add_common_filters_to_gtkchooser(gfilter, picker, filtername); return filtername; } |