summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/entityattribute.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/entityattribute.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/entityattribute.h')
-rw-r--r--umbrello/umbrello/entityattribute.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/umbrello/umbrello/entityattribute.h b/umbrello/umbrello/entityattribute.h
index 76af37a7..31b3179c 100644
--- a/umbrello/umbrello/entityattribute.h
+++ b/umbrello/umbrello/entityattribute.h
@@ -37,10 +37,10 @@ public:
* @param type The type of this UMLEntityAttribute.
* @param iv The initial value of the entityattribute.
*/
- UMLEntityAttribute(const UMLObject* parent, const QString& name,
+ UMLEntityAttribute(const UMLObject* parent, const TQString& name,
Uml::IDType id = Uml::id_None,
Uml::Visibility s = Uml::Visibility::Private,
- UMLObject *type = 0, const QString& iv = 0);
+ UMLObject *type = 0, const TQString& iv = 0);
/**
* Sets up an entityattribute.
@@ -75,14 +75,14 @@ public:
*
* @return The value of the UMLEntityAttribute's attributes property.
*/
- QString getAttributes() const;
+ TQString getAttributes() const;
/**
* Sets the UMLEntityAttribute's attributes property.
*
* @param attributes The new value for the attributes property.
*/
- void setAttributes(const QString& attributes);
+ void setAttributes(const TQString& attributes);
/**
* Returns the UMLEntityAttribute's index type property.
@@ -103,14 +103,14 @@ public:
*
* @return The UMLEntityAttribute's length/values property.
*/
- QString getValues() const;
+ TQString getValues() const;
/**
* Sets the UMLEntityAttribute's length/values property.
*
* @param values The new value of the length/values property.
*/
- void setValues(const QString& values);
+ void setValues(const TQString& values);
/**
* Returns the UMLEntityAttribute's auto_increment boolean
@@ -147,17 +147,17 @@ public:
* initial value.
* @return Returns a string representation of the UMLEntityAttribute.
*/
- QString toString(Uml::Signature_Type sig = Uml::st_NoSig);
+ TQString toString(Uml::Signature_Type sig = Uml::st_NoSig);
/**
* Creates the <UML:EntityAttribute> XMI element.
*/
- void saveToXMI(QDomDocument& qDoc, QDomElement& qElement);
+ void saveToXMI(TQDomDocument& qDoc, TQDomElement& qElement);
/**
* Display the properties configuration dialog for the entityattribute.
*/
- bool showPropertiesDialog(QWidget* parent);
+ bool showPropertiesDialog(TQWidget* parent);
protected:
/**
@@ -169,12 +169,12 @@ protected:
/**
* Loads the <UML:EntityAttribute> XMI element.
*/
- bool load(QDomElement& element);
+ bool load(TQDomElement& element);
private:
Uml::DBIndex_Type m_indexType;
- QString m_values;
- QString m_attributes;
+ TQString m_values;
+ TQString m_attributes;
bool m_autoIncrement;
bool m_null;
};