summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/InterpretDialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-02 22:38:52 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-02 22:38:52 +0000
commit458efa7b0c935cbaafa2791021a5f8f7241aa876 (patch)
tree624583f2873febe23770bee3fa94b5c24bd59f4f /src/gui/dialogs/InterpretDialog.cpp
parent747037b72944ae2c02962b7c5c96e0a7f8852e38 (diff)
downloadrosegarden-458efa7b0c935cbaafa2791021a5f8f7241aa876.tar.gz
rosegarden-458efa7b0c935cbaafa2791021a5f8f7241aa876.zip
Initial TQt4 port of Rosegarden
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1230242 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/dialogs/InterpretDialog.cpp')
-rw-r--r--src/gui/dialogs/InterpretDialog.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/dialogs/InterpretDialog.cpp b/src/gui/dialogs/InterpretDialog.cpp
index 3510d1a..75889c6 100644
--- a/src/gui/dialogs/InterpretDialog.cpp
+++ b/src/gui/dialogs/InterpretDialog.cpp
@@ -40,24 +40,24 @@
namespace Rosegarden
{
-InterpretDialog::InterpretDialog(TQWidget *parent) :
- KDialogBase(parent, 0, true, i18n("Interpret"), Ok | Cancel | Help)
+InterpretDialog::InterpretDialog(TQWidget *tqparent) :
+ KDialogBase(tqparent, 0, true, i18n("Interpret"), Ok | Cancel | Help)
{
setHelp("nv-interpret");
TQVBox *vbox = makeVBoxMainWidget();
- TQGroupBox *groupBox = new QGroupBox
- (1, Horizontal, i18n("Interpretations to apply"), vbox);
+ TQGroupBox *groupBox = new TQGroupBox
+ (1, Qt::Horizontal, i18n("Interpretations to apply"), vbox);
- m_applyTextDynamics = new QCheckBox
+ m_applyTextDynamics = new TQCheckBox
(i18n("Apply text dynamics (p, mf, ff etc)"), groupBox);
- m_applyHairpins = new QCheckBox
+ m_applyHairpins = new TQCheckBox
(i18n("Apply hairpin dynamics"), groupBox);
- m_stressBeats = new QCheckBox
+ m_stressBeats = new TQCheckBox
(i18n("Stress beats"), groupBox);
- m_articulate = new QCheckBox
+ m_articulate = new TQCheckBox
(i18n("Articulate slurs, staccato, tenuto etc"), groupBox);
- m_allInterpretations = new QCheckBox
+ m_allInterpretations = new TQCheckBox
(i18n("All available interpretations"), groupBox);
KConfig *config = kapp->config();