summaryrefslogtreecommitdiffstats
path: root/src/gui/studio/SynthPluginManagerDialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
commit11f31c37e5fa4889d9989f10272f44845449cb7b (patch)
tree4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/studio/SynthPluginManagerDialog.h
parent832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff)
downloadrosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz
rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/studio/SynthPluginManagerDialog.h')
-rw-r--r--src/gui/studio/SynthPluginManagerDialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/studio/SynthPluginManagerDialog.h b/src/gui/studio/SynthPluginManagerDialog.h
index b66a338..f58c07c 100644
--- a/src/gui/studio/SynthPluginManagerDialog.h
+++ b/src/gui/studio/SynthPluginManagerDialog.h
@@ -31,9 +31,9 @@
#include <vector>
-class QWidget;
-class QPushButton;
-class QCloseEvent;
+class TQWidget;
+class TQPushButton;
+class TQCloseEvent;
class KComboBox;
@@ -51,7 +51,7 @@ class SynthPluginManagerDialog : public KMainWindow
Q_OBJECT
public:
- SynthPluginManagerDialog(QWidget *parent,
+ SynthPluginManagerDialog(TQWidget *parent,
RosegardenGUIDoc *doc
#ifdef HAVE_LIBLO
, AudioPluginOSCGUIManager *guiManager
@@ -65,7 +65,7 @@ public:
signals:
void closing();
void pluginSelected(InstrumentId, int pluginIndex, int plugin);
- void showPluginDialog(QWidget *, InstrumentId, int pluginIndex);
+ void showPluginDialog(TQWidget *, InstrumentId, int pluginIndex);
void showPluginGUI(InstrumentId, int pluginIndex);
protected slots:
@@ -75,7 +75,7 @@ protected slots:
void slotGUIButtonClicked();
protected:
- virtual void closeEvent(QCloseEvent *);
+ virtual void closeEvent(TQCloseEvent *);
protected:
RosegardenGUIDoc *m_document;
@@ -83,8 +83,8 @@ protected:
AudioPluginManager *m_pluginManager;
std::vector<int> m_synthPlugins;
std::vector<KComboBox *> m_synthCombos;
- std::vector<QPushButton *> m_controlsButtons;
- std::vector<QPushButton *> m_guiButtons;
+ std::vector<TQPushButton *> m_controlsButtons;
+ std::vector<TQPushButton *> m_guiButtons;
#ifdef HAVE_LIBLO
AudioPluginOSCGUIManager *m_guiManager;