Switch to unified view

a/GUI/songcast/songcastdlg.cpp b/GUI/songcast/songcastdlg.cpp
...
...
80
    } else {
80
    } else {
81
        QLabel *lbl;
81
        QLabel *lbl;
82
        UncheckCheckBox *on, *off;
82
        UncheckCheckBox *on, *off;
83
            
83
            
84
        for (unsigned int i = 0; i < numreceivers; i++) {
84
        for (unsigned int i = 0; i < numreceivers; i++) {
85
            on = new UncheckCheckBox(tr("Link to selected Sender"),rcvGroupBox);
85
            on = new UncheckCheckBox(tr("Link and start"), rcvGroupBox);
86
            btnSzPolicy(on);
86
            btnSzPolicy(on);
87
            off = new UncheckCheckBox(tr("Unlink"), rcvGroupBox);
87
            off = new UncheckCheckBox(tr("Stop"), rcvGroupBox);
88
            btnSzPolicy(off);
88
            btnSzPolicy(off);
89
            lbl = new QLabel(rcvGroupBox);
89
            lbl = new QLabel(rcvGroupBox);
90
90
91
            rcvGridLayout->addWidget(off, i, 0, 1, 1);
91
            rcvGridLayout->addWidget(off, i, 0, 1, 1);
92
            rcvGridLayout->addWidget(on,  i, 1, 1, 1);
92
            rcvGridLayout->addWidget(on,  i, 1, 1, 1);