mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
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:
parent
3a4fcdcef8
commit
bb3b1dd6c5
1 changed files with 6 additions and 1 deletions
|
|
@ -89,7 +89,12 @@ void IdeFs(FileSel& fs) {
|
|||
|
||||
void SourceFs(FileSel& fs) {
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue