summaryrefslogtreecommitdiffstats
path: root/noatun/library/pluginmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/pluginmodule.h')
-rw-r--r--noatun/library/pluginmodule.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun/library/pluginmodule.h b/noatun/library/pluginmodule.h
index 75d3e04d..59ece235 100644
--- a/noatun/library/pluginmodule.h
+++ b/noatun/library/pluginmodule.h
@@ -25,15 +25,15 @@
#include "noatun/pluginloader.h"
#include <klistview.h>
-#include <qframe.h>
-#include <qstringlist.h>
+#include <tqframe.h>
+#include <tqstringlist.h>
class KTabCtl;
class PluginListItem : public QCheckListItem
{
public:
- PluginListItem(const bool _exclusive, bool _checked, const NoatunLibraryInfo &_info, QListView *_parent);
+ PluginListItem(const bool _exclusive, bool _checked, const NoatunLibraryInfo &_info, TQListView *_parent);
const NoatunLibraryInfo &info() const { return mInfo; }
// This will toggle the state without "emitting" the stateChange
@@ -41,7 +41,7 @@ public:
protected:
virtual void stateChange(bool);
- virtual void paintCell(QPainter *, const QColorGroup &, int, int, int);
+ virtual void paintCell(TQPainter *, const TQColorGroup &, int, int, int);
private:
NoatunLibraryInfo mInfo;
bool silentStateChange;
@@ -55,9 +55,9 @@ Q_OBJECT
friend class PluginListItem;
public:
- PluginListView(QWidget *_parent = 0, const char *_name = 0);
- PluginListView(unsigned _min, QWidget *_parent = 0, const char *_name = 0);
- PluginListView(unsigned _min, unsigned _max, QWidget *_parent = 0, const char *_name = 0);
+ PluginListView(TQWidget *_parent = 0, const char *_name = 0);
+ PluginListView(unsigned _min, TQWidget *_parent = 0, const char *_name = 0);
+ PluginListView(unsigned _min, unsigned _max, TQWidget *_parent = 0, const char *_name = 0);
virtual void clear();
@@ -76,12 +76,12 @@ class Plugins : public CModule
{
Q_OBJECT
public:
- Plugins(QObject *_parent = 0);
+ Plugins(TQObject *_parent = 0);
virtual void save();
virtual void reopen();
protected:
- virtual void showEvent(QShowEvent *);
+ virtual void showEvent(TQShowEvent *);
private slots:
void stateChange(PluginListItem *, bool);
@@ -91,7 +91,7 @@ private:
void removePlugin(const NoatunLibraryInfo &);
PluginListItem *findItem(const NoatunLibraryInfo &) const;
- QStringList mAdded, mDeleted;
+ TQStringList mAdded, mDeleted;
PluginListView *interfaceList, *playlistList, *otherList, *visList;
bool shown;