diff options
Diffstat (limited to 'krita/sdk/kis_annotation.h')
-rw-r--r-- | krita/sdk/kis_annotation.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/krita/sdk/kis_annotation.h b/krita/sdk/kis_annotation.h index 03287004..c29138d8 100644 --- a/krita/sdk/kis_annotation.h +++ b/krita/sdk/kis_annotation.h @@ -24,14 +24,14 @@ #include <ksharedptr.h> #include "kis_shared_ptr_vector.h" -#include <qstring.h> -#include <qcstring.h> -#include <qmemarray.h> +#include <tqstring.h> +#include <tqcstring.h> +#include <tqmemarray.h> /** * An data extension mechanism for Krita. * - * An annotation can be of something like a QByteArray or a QString op a more specific + * An annotation can be of something like a TQByteArray or a TQString op a more specific * datatype that can be attached to an image (or maybe later, if needed, to a layer) * and contains data that must be associated with an image for purposes of import/export. * @@ -52,7 +52,7 @@ public: * @param description a localized string describing the annotation * @param data a binary blob containing the annotation data */ - KisAnnotation(const QString & type, const QString & description, const QByteArray & data) + KisAnnotation(const TQString & type, const TQString & description, const TQByteArray & data) : m_type(type), m_description(description), m_annotation(data) {}; @@ -60,24 +60,24 @@ public: /** * @return a non-localized string identifiying the type of the annotation */ - QString & type() {return m_type;}; + TQString & type() {return m_type;}; /** * @return a localized string describing the type of the annotations * for user interface purposes. */ - QString & description() {return m_description;}; + TQString & description() {return m_description;}; /** * @return a binary blob representation of this annotation */ - QByteArray & annotation() { return m_annotation;}; + TQByteArray & annotation() { return m_annotation;}; private: - QString m_type; - QString m_description; - QByteArray m_annotation; + TQString m_type; + TQString m_description; + TQByteArray m_annotation; }; |