comparison generator/abstractmetalang.cpp @ 324:0cc996b7a601 signals

Qt 4.6
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Tue, 29 Dec 2009 02:48:09 +0500
parents 8a0cf14e3419
children baaf74652f4c
comparison
equal deleted inserted replaced
323:7a3c43424dca 324:0cc996b7a601
224 returned += "int"; 224 returned += "int";
225 } else { 225 } else {
226 returned += arg->type()->name().replace("[]", "_3").replace(".", "_"); 226 returned += arg->type()->name().replace("[]", "_3").replace(".", "_");
227 } 227 }
228 } 228 }
229
230 if(this->isConstant())
231 returned += "_const";
232
229 return returned; 233 return returned;
230 } 234 }
231 235
232 bool AbstractMetaFunction::operator<(const AbstractMetaFunction &other) const 236 bool AbstractMetaFunction::operator<(const AbstractMetaFunction &other) const
233 { 237 {