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/python/pythonextension.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/python/pythonextension.h')
-rw-r--r-- | lib/kross/python/pythonextension.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/lib/kross/python/pythonextension.h b/lib/kross/python/pythonextension.h index 02e42587..b19a11a1 100644 --- a/lib/kross/python/pythonextension.h +++ b/lib/kross/python/pythonextension.h @@ -27,12 +27,12 @@ #include "../api/dict.h" #include "../api/class.h" -#include <qstring.h> -#include <qstringlist.h> -#include <qvaluelist.h> -#include <qvaluevector.h> -#include <qmap.h> -#include <qvariant.h> +#include <tqstring.h> +#include <tqstringlist.h> +#include <tqvaluelist.h> +#include <tqvaluevector.h> +#include <tqmap.h> +#include <tqvariant.h> namespace Kross { namespace Python { @@ -135,46 +135,46 @@ namespace Kross { namespace Python { static Kross::Api::Object::Ptr toObject(const Py::Object& object); /** - * Converts a QString to a Py::Object. If - * the QString isNull() then Py::None() will + * Converts a TQString to a Py::Object. If + * the TQString isNull() then Py::None() will * be returned. * - * \param s The QString to convert. - * \return The to a Py::String converted QString. + * \param s The TQString to convert. + * \return The to a Py::String converted TQString. */ - static const Py::Object toPyObject(const QString& s); + static const Py::Object toPyObject(const TQString& s); /** - * Converts a QStringList to a Py::List. + * Converts a TQStringList to a Py::List. * - * \param list The QStringList to convert. - * \return The to a Py::List converted QStringList. + * \param list The TQStringList to convert. + * \return The to a Py::List converted TQStringList. */ - static const Py::List toPyObject(const QStringList& list); + static const Py::List toPyObject(const TQStringList& list); /** - * Converts a QMap to a Py::Dict. + * Converts a TQMap to a Py::Dict. * - * \param map The QMap to convert. - * \return The to a Py::Dict converted QMap. + * \param map The TQMap to convert. + * \return The to a Py::Dict converted TQMap. */ - static const Py::Dict toPyObject(const QMap<QString, QVariant>& map); + static const Py::Dict toPyObject(const TQMap<TQString, TQVariant>& map); /** - * Converts a QValueList to a Py::List. + * Converts a TQValueList to a Py::List. * - * \param list The QValueList to convert. - * \return The to a Py::List converted QValueList. + * \param list The TQValueList to convert. + * \return The to a Py::List converted TQValueList. */ - static const Py::List toPyObject(const QValueList<QVariant>& list); + static const Py::List toPyObject(const TQValueList<TQVariant>& list); /** - * Converts a QVariant to a Py::Object. + * Converts a TQVariant to a Py::Object. * - * \param variant The QVariant to convert. - * \return The to a Py::Object converted QVariant. + * \param variant The TQVariant to convert. + * \return The to a Py::Object converted TQVariant. */ - static const Py::Object toPyObject(const QVariant& variant); + static const Py::Object toPyObject(const TQVariant& variant); /** * Converts a \a Kross::Api::Object to a Py::Object. |