~keithsalisbury/mixxx/features_key_preferences

« back to all changes in this revision

Viewing changes to mixxx/src/engine/bpmcontrol.cpp

  • Committer: RJ Ryan
  • Date: 2012-01-07 06:23:03 UTC
  • mfrom: (2837.3.6 mixxx-1.10)
  • Revision ID: rryan@mit.edu-20120107062303-t3frj9pvngzu6chn
MergingĀ fromĀ lp:mixxx/1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
            this, SLOT(slotControlBeatSyncTempo(double)),
72
72
            Qt::DirectConnection);
73
73
 
74
 
    m_pTranslateBeats = new ControlPushButton(ConfigKey(_group, "beats_translate_curpos"));
 
74
    m_pTranslateBeats = new ControlPushButton(
 
75
        ConfigKey(_group, "beats_translate_curpos"));
75
76
    connect(m_pTranslateBeats, SIGNAL(valueChanged(double)),
76
 
            this, SLOT(slotBeatsTranslate(double)));
 
77
            this, SLOT(slotBeatsTranslate(double)),
 
78
            Qt::DirectConnection);
77
79
 
78
80
    connect(&m_tapFilter, SIGNAL(tapped(double,int)),
79
81
            this, SLOT(slotTapFilter(double,int)),