summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/genset.h
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2010-11-22 22:17:55 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2010-11-22 22:17:55 +0000
commit4dec95a58f5a3b0062e11da4331f8556428791a5 (patch)
tree2e1775709435c1ae8a6aa378730c7add00e27e60 /muse2/muse/widgets/genset.h
parent8139e4fbcc1ecd55ad7eaf643b5c477a19688b64 (diff)
ported .ui widgets to Qt4. removed unused old widgets from project
Diffstat (limited to 'muse2/muse/widgets/genset.h')
-rw-r--r--muse2/muse/widgets/genset.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/muse2/muse/widgets/genset.h b/muse2/muse/widgets/genset.h
index 375cf197..e0494b2f 100644
--- a/muse2/muse/widgets/genset.h
+++ b/muse2/muse/widgets/genset.h
@@ -9,15 +9,15 @@
#ifndef __GENSET_H__
#define __GENSET_H__
-#include "gensetbase.h"
-//Added by qt3to4:
+#include "ui_gensetbase.h"
+
#include <QShowEvent>
//---------------------------------------------------------
// GlobalSettingsConfig
//---------------------------------------------------------
-class GlobalSettingsConfig : public GlobalSettingsDialogBase {
+class GlobalSettingsConfig : public QDialog, public Ui::GlobalSettingsDialogBase {
Q_OBJECT
private slots:
@@ -33,9 +33,10 @@ class GlobalSettingsConfig : public GlobalSettingsDialogBase {
protected:
void showEvent(QShowEvent*);
+ QButtonGroup *startSongGroup;
public:
- GlobalSettingsConfig(QWidget* parent=0, const char* name=0);
+ GlobalSettingsConfig(QWidget* parent=0);
};
#endif