From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001
From: tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>
Date: Sat, 31 Jul 2010 19:56:07 +0000
Subject: Trinity Qt initial conversion

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
---
 lib/interfaces/kdevplugininfo.h | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

(limited to 'lib/interfaces/kdevplugininfo.h')

diff --git a/lib/interfaces/kdevplugininfo.h b/lib/interfaces/kdevplugininfo.h
index 9e133912..50fe4601 100644
--- a/lib/interfaces/kdevplugininfo.h
+++ b/lib/interfaces/kdevplugininfo.h
@@ -19,7 +19,7 @@
 #ifndef KDEVPLUGININFO_H
 #define KDEVPLUGININFO_H
 
-#include <qvariant.h>
+#include <tqvariant.h>
 
 #include <kaboutdata.h>
 
@@ -42,46 +42,46 @@ public:
     /**Constructor.
     @param pluginName A name of a plugin. Must be the same as the name of a .desktop file
     and the same as the location of plugin resource files.*/
-    KDevPluginInfo(const QString &pluginName);
+    KDevPluginInfo(const TQString &pluginName);
     
     /**Casts KDevPluginInfo to KAboutData. Uses KDevPluginInfo::pluginName as KAboutData::appName,
     KDevPluginInfo::rawGenericName as KAboutData::programName KDevPluginInfo::licenseType as KAboutData::licenseType. Other parameters are ignored.*/
     operator KAboutData*() const;
     
     /**@return A name of a plugin (always untranslated).*/
-    QString pluginName() const;
+    TQString pluginName() const;
     /**@return A generic name of a plugin (translated). Use this in GUI. Information is taken from .desktop file.*/
-    QString genericName() const;
+    TQString genericName() const;
     /**@return An icon name of a plugin. Information is taken from .desktop file.*/
-    QString icon() const;
+    TQString icon() const;
     /**@return A description of a plugin. Information is taken from .desktop file.*/
-    QString description() const;
+    TQString description() const;
     /**@return A version of a plugin. Information is taken from .desktop file.*/
-    QString version() const;
+    TQString version() const;
     /**@return A license type of a plugin. Information is taken from .desktop file.*/
     int licenseType() const;
     /**@return A license text for known license types (GPL, LGPL, BSD, Artistic, QPL).*/
-    QString license() const;
+    TQString license() const;
     /**@return A copyright statement of a plugin. Information is taken from .desktop file.*/
-    QString copyrightStatement() const;
+    TQString copyrightStatement() const;
     /**@return A home page of a plugin. Information is taken from .desktop file.*/
-    QString homePageAddress() const;
+    TQString homePageAddress() const;
     /**@return A email address for bugs of a plugin. Information is taken from .desktop file.*/
-    QString bugsEmailAddress() const;
+    TQString bugsEmailAddress() const;
     
     /**@param name The name of a property.
     @return Any property value which exists in .desktop file.*/
-    QVariant property(const QString &name) const;
+    TQVariant property(const TQString &name) const;
     /**@param name The name of a property.
     @return Any property value which exists in .desktop file.*/
-    QVariant operator [] (const QString &name) const;
+    TQVariant operator [] (const TQString &name) const;
     /**@return A list of property names set in .desktop file.*/
-    QStringList propertyNames() const;
+    TQStringList propertyNames() const;
 
     /**@return A list of plugin authors.*/
-    const QValueList<KAboutPerson> authors() const;
+    const TQValueList<KAboutPerson> authors() const;
     /**@return A list of other plugin contributors.*/
-    const QValueList<KAboutPerson> credits() const;
+    const TQValueList<KAboutPerson> credits() const;
 
     /**Adds an author to the list of authors.
     You can call this function as many times you need. Each entry is appended to a list.
-- 
cgit v1.2.1