comparison widgets/UnitConverter.cpp @ 890:1f2dc7fcad92

Oops, included some unintended cruft
author Chris Cannam
date Tue, 09 Dec 2014 11:49:27 +0000
parents cd59f6e1aa26
children 09b2940f483a
comparison
equal deleted inserted replaced
889:cd59f6e1aa26 890:1f2dc7fcad92
128 (new QLabel(tr("Note that only pitches in the range 0 to 127 are valid " 128 (new QLabel(tr("Note that only pitches in the range 0 to 127 are valid "
129 "in the MIDI protocol.")), 129 "in the MIDI protocol.")),
130 row, 0, 1, 9); 130 row, 0, 1, 9);
131 131
132 ++row; 132 ++row;
133
134 QFrame *frame = new QFrame;
135 tabs->addTab(frame, tr("Pitch"));
136
137 QGridLayout *grid = new QGridLayout;
138 frame->setLayout(grid);
139 133
140 updatePitchesFromFreq(); 134 updatePitchesFromFreq();
141 } 135 }
142 136
143 UnitConverter::~UnitConverter() 137 UnitConverter::~UnitConverter()