summaryrefslogtreecommitdiffstats
path: root/ksim/library/pluginglobal.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /ksim/library/pluginglobal.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/library/pluginglobal.h')
-rw-r--r--ksim/library/pluginglobal.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/ksim/library/pluginglobal.h b/ksim/library/pluginglobal.h
index 85df9ce..5dbeef8 100644
--- a/ksim/library/pluginglobal.h
+++ b/ksim/library/pluginglobal.h
@@ -20,9 +20,9 @@
#ifndef PLUGINGLOBAL_H
#define PLUGINGLOBAL_H
-#include <qstring.h>
-#include <qpixmap.h>
-#include <qvaluelist.h>
+#include <tqstring.h>
+#include <tqpixmap.h>
+#include <tqvaluelist.h>
#include <kdemacros.h>
@@ -93,19 +93,19 @@ namespace KSim
* @return the name of the plugin, NOT the library name
* @see #libName
*/
- const QString &name() const;
+ const TQString &name() const;
/**
* @return the icon of the plugin
*/
- QPixmap icon() const;
+ TQPixmap icon() const;
/**
* @return library name of the plugin
*/
- QCString libName() const;
+ TQCString libName() const;
/**
* @return path to the .desktop file
*/
- const QString &fileName() const;
+ const TQString &fileName() const;
/**
* @return the plugin object
*/
@@ -135,22 +135,22 @@ namespace KSim
* use pluginList() from KSim::PluginLoader instead
* @author Robbie Ward <linuxphreak@gmx.co.uk>
*/
- class KDE_EXPORT PluginList : public QValueList<Plugin>
+ class KDE_EXPORT PluginList : public TQValueList<Plugin>
{
public:
/**
* constructs a null list
*/
- PluginList() : QValueList<Plugin>() {}
+ PluginList() : TQValueList<Plugin>() {}
/**
* constructs a copy of @p list
*/
- PluginList(const PluginList &list) : QValueList<Plugin>(list) {}
+ PluginList(const PluginList &list) : TQValueList<Plugin>(list) {}
/**
* constructs a copy of @p list
*/
- PluginList(const QValueList<Plugin> &list)
- : QValueList<Plugin>(list) {}
+ PluginList(const TQValueList<Plugin> &list)
+ : TQValueList<Plugin>(list) {}
/**
* constructs a list with just one item
*/