mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 15:09:39 +02:00
2015-03-05 Fred Gleason <fredg@paravelsystems.com>
* Increased digit count on endpoints from 3 to 4 in 'rdadmin/list_endpoints.cpp'.
This commit is contained in:
parent
c87ea8cfba
commit
0fbbfc5f19
@ -14819,3 +14819,6 @@
|
|||||||
four digit endpoint numbers.
|
four digit endpoint numbers.
|
||||||
2015-03-05 Fred Gleason <fredg@paravelsystems.com>
|
2015-03-05 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Increased 'MAX_ENDPOINTS' in 'lib/rd.h' from 1024 to 2048.
|
* Increased 'MAX_ENDPOINTS' in 'lib/rd.h' from 1024 to 2048.
|
||||||
|
2015-03-05 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Increased digit count on endpoints from 3 to 4 in
|
||||||
|
'rdadmin/list_endpoints.cpp'.
|
||||||
|
@ -267,7 +267,7 @@ ListEndpoints::ListEndpoints(RDMatrix *matrix,RDMatrix::Endpoint endpoint,
|
|||||||
q->first();
|
q->first();
|
||||||
for(int i=0;i<list_size;i++) {
|
for(int i=0;i<list_size;i++) {
|
||||||
l=new QListViewItem(list_list_view);
|
l=new QListViewItem(list_list_view);
|
||||||
l->setText(0,QString().sprintf("%03d",i+1));
|
l->setText(0,QString().sprintf("%04d",i+1));
|
||||||
if(q->isValid()&&(q->value(0).toInt()==(i+1))){
|
if(q->isValid()&&(q->value(0).toInt()==(i+1))){
|
||||||
l->setText(1,q->value(1).toString());
|
l->setText(1,q->value(1).toString());
|
||||||
switch(list_matrix->type()) {
|
switch(list_matrix->type()) {
|
||||||
@ -539,7 +539,7 @@ void ListEndpoints::okData()
|
|||||||
modecol=4;
|
modecol=4;
|
||||||
}
|
}
|
||||||
for(int i=0;i<list_size;i++) {
|
for(int i=0;i<list_size;i++) {
|
||||||
item=list_list_view->findItem(QString().sprintf("%03d",i+1),0);
|
item=list_list_view->findItem(QString().sprintf("%04d",i+1),0);
|
||||||
if(item->text(modecol).lower()==QString(tr("stereo"))) {
|
if(item->text(modecol).lower()==QString(tr("stereo"))) {
|
||||||
mode=RDMatrix::Stereo;
|
mode=RDMatrix::Stereo;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user