diff options
Diffstat (limited to 'umbrello/umbrello/codecomment.cpp')
-rw-r--r-- | umbrello/umbrello/codecomment.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/umbrello/umbrello/codecomment.cpp b/umbrello/umbrello/codecomment.cpp index b59e52b4..78873e3d 100644 --- a/umbrello/umbrello/codecomment.cpp +++ b/umbrello/umbrello/codecomment.cpp @@ -20,7 +20,7 @@ // Constructors/Destructors // -CodeComment::CodeComment (CodeDocument * doc, const QString & comment ) +CodeComment::CodeComment (CodeDocument * doc, const TQString & comment ) : TextBlock ( doc, comment ) { @@ -43,9 +43,9 @@ CodeComment::~CodeComment ( ) { } /** * Save the XMI representation of this object */ -void CodeComment::saveToXMI ( QDomDocument & doc, QDomElement & root ) { +void CodeComment::saveToXMI ( TQDomDocument & doc, TQDomElement & root ) { kDebug() << "CodeComment::saveToXMI is called!" << endl; - QDomElement blockElement = doc.createElement( "codecomment" ); + TQDomElement blockElement = doc.createElement( "codecomment" ); setAttributesOnNode(doc, blockElement); // as we added no additional fields to this class we may // just use parent TextBlock method root.appendChild( blockElement ); @@ -54,7 +54,7 @@ void CodeComment::saveToXMI ( QDomDocument & doc, QDomElement & root ) { /** * load params from the appropriate XMI element node. */ -void CodeComment::loadFromXMI ( QDomElement & root ) { +void CodeComment::loadFromXMI ( TQDomElement & root ) { setAttributesFromNode(root); } |