theide: Package file selector now has more type entries (C++ files, layout files...)

git-svn-id: svn://ultimatepp.org/upp/trunk@2047 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-02-10 07:24:36 +00:00
parent 3a4fcdcef8
commit bb3b1dd6c5

View file

@ -89,7 +89,12 @@ void IdeFs(FileSel& fs) {
void SourceFs(FileSel& fs) { void SourceFs(FileSel& fs) {
String mask = "*.cpp *.h *.hpp *.c *.C *.cc *.cxx *.lay *.iml *.lng *.sch *.usc *.rc *.brc *.upt"; String mask = "*.cpp *.h *.hpp *.c *.C *.cc *.cxx *.lay *.iml *.lng *.sch *.usc *.rc *.brc *.upt";
fs.Type("Source files (" + mask + ")", mask); fs.Type("C++ files (*.cpp *.h *.hpp *.c *.C *.cc *.cxx)", "*.cpp *.h *.hpp *.c *.C *.cc *.cxx");
fs.Type("Layout files (*.lay)", "*.lay");
fs.Type("Image files (*.iml)", "*.iml");
fs.Type("Language files (*.lng)", "*.lng");
fs.Type("Other special files (*.sch *.usc *.rc *.brc *.upt)", "*.sch *.usc *.rc *.brc *.upt");
fs.Type("All source files (" + mask + ")", mask);
IdeFs(fs); IdeFs(fs);
} }