diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /lib/kross/ruby/rubyextension.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/kross/ruby/rubyextension.h')
-rw-r--r-- | lib/kross/ruby/rubyextension.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/lib/kross/ruby/rubyextension.h b/lib/kross/ruby/rubyextension.h index 74041048c..f6287961c 100644 --- a/lib/kross/ruby/rubyextension.h +++ b/lib/kross/ruby/rubyextension.h @@ -102,40 +102,40 @@ class RubyExtension{ */ static Kross::Api::Object::Ptr toObject(VALUE value); /** - * Converts a QString to a VALUE. If - * the QString isNull() then a "" will + * Converts a TQString to a VALUE. If + * the TQString isNull() then a "" will * be returned. - * \param s The QString to convert. - * \return The converted QString. + * \param s The TQString to convert. + * \return The converted TQString. */ - static VALUE toVALUE(const QString& s); + static VALUE toVALUE(const TQString& s); /** - * Converts a QStringList to a VALUE. - * \param list The QStringList to convert. - * \return The converted QStringList. + * Converts a TQStringList to a VALUE. + * \param list The TQStringList to convert. + * \return The converted TQStringList. */ - static VALUE toVALUE(QStringList list); + static VALUE toVALUE(TQStringList list); /** - * Converts a QMap to a VALUE. - * \param map The QMap to convert. - * \return The converted QMap. + * Converts a TQMap to a VALUE. + * \param map The TQMap to convert. + * \return The converted TQMap. */ - static VALUE toVALUE(QMap<QString, QVariant> map); + static VALUE toVALUE(TQMap<TQString, TQVariant> map); /** - * Converts a QValueList to a VALUE. - * \param list The QValueList to convert. - * \return The converted QValueList. + * Converts a TQValueList to a VALUE. + * \param list The TQValueList to convert. + * \return The converted TQValueList. */ - static VALUE toVALUE(QValueList<QVariant> list); + static VALUE toVALUE(TQValueList<TQVariant> list); /** - * Converts a QVariant to a VALUE. - * \param variant The QVariant to convert. - * \return The converted QVariant. + * Converts a TQVariant to a VALUE. + * \param variant The TQVariant to convert. + * \return The converted TQVariant. */ - static VALUE toVALUE(const QVariant& variant); + static VALUE toVALUE(const TQVariant& variant); /** * Converts a \a Kross::Api::Object to a VALUE. |