summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codemethodblock.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /umbrello/umbrello/codemethodblock.h
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello/umbrello/codemethodblock.h')
-rw-r--r--umbrello/umbrello/codemethodblock.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/umbrello/umbrello/codemethodblock.h b/umbrello/umbrello/codemethodblock.h
index 65cbe2e8..41555627 100644
--- a/umbrello/umbrello/codemethodblock.h
+++ b/umbrello/umbrello/codemethodblock.h
@@ -18,7 +18,7 @@
#ifndef CODEMETHODBLOCK_H
#define CODEMETHODBLOCK_H
-#include <qstring.h>
+#include <tqstring.h>
#include "ownedcodeblock.h"
#include "codeblockwithcomments.h"
@@ -45,7 +45,7 @@ public:
* Constructors
*/
CodeMethodBlock ( ClassifierCodeDocument * doc, UMLObject * parentObj,
- const QString & body = "", const QString & comment = "");
+ const TQString & body = "", const TQString & comment = "");
/**
* Empty Destructor
@@ -58,17 +58,17 @@ public:
/**
* @return QString
*/
- virtual QString toString ( );
+ virtual TQString toString ( );
/**
* Get the starting text that begins this method before the body is printed.
*/
- QString getStartMethodText () const;
+ TQString getStartMethodText () const;
/**
* Get the ending text that finishes this method after the body is printed.
*/
- QString getEndMethodText () const;
+ TQString getEndMethodText () const;
// get the parent code document
CodeDocument * getParentDocument();
@@ -85,12 +85,12 @@ protected:
/**
* Set the starting text that begins this method before the body is printed.
*/
- void setStartMethodText (const QString &value);
+ void setStartMethodText (const TQString &value);
/**
* Set the ending text that finishes this method after the body is printed.
*/
- void setEndMethodText (const QString &value);
+ void setEndMethodText (const TQString &value);
/** this is the method called from within syncToparent().
* to update the start and end Method text. It is called
@@ -107,12 +107,12 @@ protected:
/** set attributes of the node that represents this class
* in the XMI document.
*/
- virtual void setAttributesOnNode ( QDomDocument & doc, QDomElement & blockElement);
+ virtual void setAttributesOnNode ( TQDomDocument & doc, TQDomElement & blockElement);
/** set the class attributes of this object from
* the passed element node.
*/
- virtual void setAttributesFromNode ( QDomElement & element);
+ virtual void setAttributesFromNode ( TQDomElement & element);
/** set the class attributes from a passed object
*/
@@ -120,8 +120,8 @@ protected:
private:
- QString m_startMethod;
- QString m_endMethod;
+ TQString m_startMethod;
+ TQString m_endMethod;
void initFields ( );