summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeclassfield.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/codeclassfield.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/codeclassfield.h')
-rw-r--r--umbrello/umbrello/codeclassfield.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/umbrello/umbrello/codeclassfield.h b/umbrello/umbrello/codeclassfield.h
index bd651b6e..d5542bd3 100644
--- a/umbrello/umbrello/codeclassfield.h
+++ b/umbrello/umbrello/codeclassfield.h
@@ -83,7 +83,7 @@ public:
// CodeClassFieldDialog getDialog ( );
// Determine if this cf is attribute or some type of association
- QString getTypeName ( );
+ TQString getTypeName ( );
/**
* @return CodeClassFieldDeclarationBlock representing the declaration statement of this class field
@@ -118,7 +118,7 @@ public:
// get the type of object that will be added/removed from lists
// of objects (as per specification of associations)
- QString getListObjectType();
+ TQString getListObjectType();
/** determine if we will *allow* methods to be viewable.
* this flag is often used to toggle autogeneration of accessor
@@ -149,12 +149,12 @@ public:
/**
* Save the XMI representation of this object
*/
- virtual void saveToXMI ( QDomDocument & doc, QDomElement & root );
+ virtual void saveToXMI ( TQDomDocument & doc, TQDomElement & root );
/**
* load params from the appropriate XMI element node.
*/
- virtual void loadFromXMI ( QDomElement & root );
+ virtual void loadFromXMI ( TQDomElement & root );
/** Force the syncronization of the content (methods and declarations)
* of this class field.
@@ -171,23 +171,23 @@ protected:
/** a little utility method to make life easier for code document programmers
*/
- QString cleanName(const QString &name);
+ TQString cleanName(const TQString &name);
/** another utility method to make life easier for code document programmers
* this one fixes the initial declared value of string attributes so that if
* its empty or lacking quotations, it comes out as ""
*/
- QString fixInitialStringDeclValue(const QString& val, const QString &type);
+ TQString fixInitialStringDeclValue(const TQString& val, const TQString &type);
// set the list class name
- void setListClassName ( const QString &className );
+ void setListClassName ( const TQString &className );
/**
* Add a Method object to the m_methodVector List
*/
bool addMethod ( CodeAccessorMethod * add );
- QString getUMLObjectName(UMLObject *obj);
+ TQString getUMLObjectName(UMLObject *obj);
/**
* Remove a Method object from m_methodVector List
@@ -200,7 +200,7 @@ protected:
private:
- QString m_listClassName;
+ TQString m_listClassName;
ClassFieldType m_classFieldType;
CodeClassFieldDeclarationBlock * m_declCodeBlock;
CodeAccessorMethodList m_methodVector; // the list of methods related to this codeclassfield
@@ -215,12 +215,12 @@ private:
/** 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);
/** init class fields */
void initFields(bool inConstructor = false);