diff options
author | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-10 09:38:40 +0000 |
---|---|---|
committer | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-10 09:38:40 +0000 |
commit | 4f11ef1b0124517e14712ffae284198db47d4d8d (patch) | |
tree | 208cc8bb89e18969686aeac346c5195010275995 /muse2/muse/plugin.h | |
parent | d225bb1f574a68a56b96fa33ebb33dcbc009383b (diff) |
Fixes in plugin and save dialogs. Please see the ChangeLog.
Diffstat (limited to 'muse2/muse/plugin.h')
-rw-r--r-- | muse2/muse/plugin.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/muse2/muse/plugin.h b/muse2/muse/plugin.h index fbe6169e..24173de4 100644 --- a/muse2/muse/plugin.h +++ b/muse2/muse/plugin.h @@ -523,6 +523,7 @@ class PluginDialog : public QDialog { QRadioButton* onlyM; QRadioButton* onlyS; QRadioButton* onlySM; + QPushButton *okB; Q_OBJECT @@ -531,14 +532,19 @@ class PluginDialog : public QDialog { static Plugin* getPlugin(QWidget* parent); Plugin* value(); void accept(); -public slots: - void fillPlugs(QAbstractButton*); - void fillPlugs(int i); - void fillPlugs(const QString& sortValue); - private: - QComboBox *sortBox; - static int selectedPlugType; - static QStringList sortItems; + + public slots: + void fillPlugs(QAbstractButton*); + void fillPlugs(int i); + void fillPlugs(const QString& sortValue); + + private slots: + void enableOkB(); + + private: + QComboBox *sortBox; + static int selectedPlugType; + static QStringList sortItems; }; extern void initPlugins(); |