summaryrefslogtreecommitdiffstats
path: root/kjs
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kjs
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kjs')
-rw-r--r--kjs/identifier.h4
-rw-r--r--kjs/ustring.h20
2 files changed, 12 insertions, 12 deletions
diff --git a/kjs/identifier.h b/kjs/identifier.h
index 5867077d8..e479547f6 100644
--- a/kjs/identifier.h
+++ b/kjs/identifier.h
@@ -52,9 +52,9 @@ namespace KJS {
const UString &ustring() const { return _ustring; }
DOM::DOMString string() const;
/**
- * returns a QString of the identifier
+ * returns a TQString of the identifier
*/
- QString qstring() const;
+ TQString qstring() const;
/**
* returns a UChar pointer to the string of the identifier with a size defined by @ref size().
diff --git a/kjs/ustring.h b/kjs/ustring.h
index 34ab975e3..09fb0231d 100644
--- a/kjs/ustring.h
+++ b/kjs/ustring.h
@@ -24,7 +24,7 @@
#ifndef _KJS_USTRING_H_
#define _KJS_USTRING_H_
-#include <qstring.h>
+#include <tqstring.h>
#include "global.h"
/**
@@ -46,7 +46,7 @@ namespace KJS {
* @short Unicode character.
*
* UChar represents a 16 bit Unicode character. It's internal data
- * representation is compatible to XChar2b and QChar. It's therefore
+ * representation is compatible to XChar2b and TQChar. It's therefore
* possible to exchange data with X and Qt with shallow copies.
*/
struct KJS_EXPORT UChar {
@@ -257,14 +257,14 @@ namespace KJS {
UString(const UString &s) { attach(s.rep); }
/**
* Convenience declaration only ! You'll be on your own to write the
- * implementation for a construction from QString.
+ * implementation for a construction from TQString.
*
* Note: feel free to contact me if you want to see a dummy header for
* your favorite FooString class here !
*/
- UString(const QString &);
+ UString(const TQString &);
/**
- * Convenience declaration only ! See UString(const QString&).
+ * Convenience declaration only ! See UString(const TQString&).
*/
UString(const DOM::DOMString &);
/**
@@ -312,17 +312,17 @@ namespace KJS {
*/
char *ascii() const;
/**
- * @see UString(const QString&).
+ * @see UString(const TQString&).
*/
DOM::DOMString string() const;
/**
- * @see UString(const QString&).
+ * @see UString(const TQString&).
*/
- QString qstring() const;
+ TQString qstring() const;
/**
- * @see UString(const QString&).
+ * @see UString(const TQString&).
*/
- QConstString qconststring() const;
+ TQConstString qconststring() const;
/**
* Assignment operator.