diff options
Diffstat (limited to 'pytquic3/uic.cpp')
-rw-r--r-- | pytquic3/uic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pytquic3/uic.cpp b/pytquic3/uic.cpp index d5d89dc..e4a5ad0 100644 --- a/pytquic3/uic.cpp +++ b/pytquic3/uic.cpp @@ -387,9 +387,9 @@ void Uic::createActionImpl( const TQDomElement &n, const TQString &parent ) for ( TQDomElement ae = n; !ae.isNull(); ae = ae.nextSibling().toElement() ) { TQString objName = registerObject( getObjectName( ae ) ); if ( ae.tagName() == "action" ) - out << indent << "self." << objName << " = TQAction(" << parent << ",\"" << objName << "\")" << endl; + out << indent << "self." << objName << " = TQAction(" << parent << ",b\"" << objName << "\")" << endl; else if ( ae.tagName() == "actiongroup" ) - out << indent << "self." << objName << " = TQActionGroup(" << parent << ",\"" << objName << "\")" << endl; + out << indent << "self." << objName << " = TQActionGroup(" << parent << ",b\"" << objName << "\")" << endl; else continue; bool subActionsDone = FALSE; |