File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -226,8 +226,16 @@ List<Entry> Preprocess (XmlNode parent)
226
226
227
227
List < Entry > PreprocessClasses ( List < Entry > entries )
228
228
{
229
+ List < string > filter = new List < string > ( ) {
230
+ "QItemSelection"
231
+ } ;
232
+
233
+
229
234
List < Entry > removed = new List < Entry > ( entries . Where ( o => ( o . type == "Class" || o . type == "Struct" ) && ( o . IsTrue ( "incomplete" ) || ! o . HasValue ( "name" ) || ( Entry . idlist [ o [ "file" ] ] . name . StartsWith ( "/" ) ) ) ) ) ;
235
+ removed . AddRange ( entries . Where ( o => filter . Contains ( o . name ) ) . ToList ( ) ) ;
230
236
entries . RemoveAll ( o => ( o . type == "Class" || o . type == "Struct" ) && ( o . IsTrue ( "incomplete" ) || ! o . HasValue ( "name" ) || ( Entry . idlist [ o [ "file" ] ] . name . StartsWith ( "/" ) ) ) ) ;
237
+ entries . RemoveAll ( o => filter . Contains ( o . name ) ) ;
238
+
231
239
232
240
foreach ( Entry clas in entries . Where ( o => o . type == "Class" || o . type == "Struct" ) ) {
233
241
clas . computedName = clas . name ;
You can’t perform that action at this time.
0 commit comments