summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoUserStyle.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kotext/KoUserStyle.h')
-rw-r--r--lib/kotext/KoUserStyle.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/kotext/KoUserStyle.h b/lib/kotext/KoUserStyle.h
index 51603f10..7f964f90 100644
--- a/lib/kotext/KoUserStyle.h
+++ b/lib/kotext/KoUserStyle.h
@@ -20,7 +20,7 @@
#define KOUSERSTYLE_H
#include <koffice_export.h>
-#include <qstring.h>
+#include <tqstring.h>
/**
* Base class for any kind of style that the user can create/modify/delete/display.
@@ -33,23 +33,23 @@
class KOTEXT_EXPORT KoUserStyle
{
public:
- KoUserStyle( const QString & name );
+ KoUserStyle( const TQString & name );
/// The internal name (used for loading/saving, but not shown to the user)
/// Should be unique in a given style collection.
- QString name() const { return m_name; }
+ TQString name() const { return m_name; }
/// Set the internal name - see generateUniqueName() if needed
/// Should be unique in a given style collection.
- void setName( const QString & name ) { m_name = name; }
+ void setName( const TQString & name ) { m_name = name; }
/// The user-visible name (e.g. translated, or set by the user)
- QString displayName() const;
+ TQString displayName() const;
/// Set the user-visible name
- void setDisplayName( const QString& name );
+ void setDisplayName( const TQString& name );
protected:
- QString m_name;
- QString m_displayName;
+ TQString m_name;
+ TQString m_displayName;
};
#endif