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