comparison generator/cppimplgenerator.cpp @ 148:ae34188ddd84

private signals of QAbstractItemModel are now accessible
author eldar
date Sat, 13 Jun 2009 14:05:32 +0000
parents a860544c5ee8
children ae06da58ec25
comparison
equal deleted inserted replaced
147:4b423949c893 148:ae34188ddd84
745 s << ";"; 745 s << ";";
746 } else if (cpp_shared) { 746 } else if (cpp_shared) {
747 s << "typedef " << return_type << " " << "(*pf" << f_name << ")"; 747 s << "typedef " << return_type << " " << "(*pf" << f_name << ")";
748 writeVirtualDispatchArguments(s, function, false); 748 writeVirtualDispatchArguments(s, function, false);
749 s << ";" << endl 749 s << ";" << endl
750 << "pf" << function->marshalledName() << "_dispatch " 750 << "pf" << f_name << " " << f_name << ";";
751 << function->marshalledName() << "_dispatch;";
752 } 751 }
753 752
754 s << endl; 753 s << endl;
755 } 754 }
756 755