##// END OF EJS Templates
added alphabetic sorting...
florianlink -
r96:3170eb771a99
parent child
Show More
@@ -275,6 +275,7 AbstractMetaFunctionList ShellGenerator::getFunctionsToWrap(const AbstractMetaCl
275 resultFunctions << func;
275 resultFunctions << func;
276 }
276 }
277 }
277 }
278 qStableSort(resultFunctions);
278 return resultFunctions;
279 return resultFunctions;
279 }
280 }
280
281
@@ -284,6 +285,7 AbstractMetaFunctionList ShellGenerator::getVirtualFunctionsForShell(const Abstr
284 AbstractMetaClass::VirtualFunctions | AbstractMetaClass::WasVisible
285 AbstractMetaClass::VirtualFunctions | AbstractMetaClass::WasVisible
285 // | AbstractMetaClass::NotRemovedFromTargetLang
286 // | AbstractMetaClass::NotRemovedFromTargetLang
286 );
287 );
288 qStableSort(functions);
287 return functions;
289 return functions;
288 }
290 }
289
291
@@ -296,6 +298,7 AbstractMetaFunctionList ShellGenerator::getProtectedFunctionsThatNeedPromotion(
296 functions << func;
298 functions << func;
297 }
299 }
298 }
300 }
301 qStableSort(functions);
299 return functions;
302 return functions;
300 }
303 }
301
304
General Comments 0
You need to be logged in to leave comments. Login now