--- qsampler/trunk/src/qsamplerChannelStrip.cpp 2007/11/01 17:14:21 1464 +++ qsampler/trunk/src/qsamplerChannelStrip.cpp 2007/11/01 19:25:10 1466 @@ -45,6 +45,25 @@ // Try to restore normal window positioning. adjustSize(); + + QObject::connect(ui.ChannelSetupPushButton, + SIGNAL(clicked()), + SLOT(channelSetup())); + QObject::connect(ui.ChannelMutePushButton, + SIGNAL(toggled(bool)), + SLOT(channelMute(bool))); + QObject::connect(ui.ChannelSoloPushButton, + SIGNAL(toggled(bool)), + SLOT(channelSolo(bool))); + QObject::connect(ui.VolumeSlider, + SIGNAL(valueChanged(int)), + SLOT(volumeChanged(int))); + QObject::connect(ui.VolumeSpinBox, + SIGNAL(valueChanged(int)), + SLOT(volumeChanged(int))); + QObject::connect(ui.ChannelEditPushButton, + SIGNAL(clicked()), + SLOT(channelEdit())); } ChannelStrip::~ChannelStrip() {