summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/operation.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/operation.h')
-rw-r--r--umbrello/umbrello/operation.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/operation.h b/umbrello/umbrello/operation.h
index eb94576e..4ceef15a 100644
--- a/umbrello/umbrello/operation.h
+++ b/umbrello/umbrello/operation.h
@@ -37,7 +37,7 @@ public:
* @param s The visibility of the operation.
* @param rt The return type of the operation.
*/
- UMLOperation(const UMLClassifier * parent, const QString& name,
+ UMLOperation(const UMLClassifier * parent, const TQString& name,
Uml::IDType id = Uml::id_None,
Uml::Visibility s = Uml::Visibility::Public,
UMLObject *rt = 0);
@@ -120,7 +120,7 @@ public:
* @param name The parameter name to search for.
* @return The found parameter, 0 if not found.
*/
- UMLAttribute * findParm(const QString &name);
+ UMLAttribute * findParm(const TQString &name);
/**
* Returns a string representation of the operation.
@@ -128,7 +128,7 @@ public:
* @param sig What type of operation string to show.
* @return The string representation of the operation.
*/
- QString toString(Uml::Signature_Type sig = Uml::st_NoSig);
+ TQString toString(Uml::Signature_Type sig = Uml::st_NoSig);
/**
* Add a parameter to the operation.
@@ -151,12 +151,12 @@ public:
/**
* Returns an unused parameter name for a new parameter.
*/
- QString getUniqueParameterName();
+ TQString getUniqueParameterName();
/**
* Display the properties configuration dialog for the template.
*/
- bool showPropertiesDialog(QWidget* parent);
+ bool showPropertiesDialog(TQWidget* parent);
/**
* Returns whether this operation is a constructor.
@@ -192,13 +192,13 @@ public:
/**
* Saves to the <UML:Operation> XMI element.
*/
- void saveToXMI( QDomDocument & qDoc, QDomElement & qElement );
+ void saveToXMI( TQDomDocument & qDoc, TQDomElement & qElement );
protected:
/**
* Loads a <UML:Operation> XMI element.
*/
- bool load( QDomElement & element );
+ bool load( TQDomElement & element );
private:
Uml::IDType m_returnId; ///< Holds the xmi.id of the <UML:Parameter kind="return">