1
0
mirror of https://github.com/ElvishArtisan/rivendell.git synced 2025-04-14 16:49:17 +02:00

2020-02-07 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up a compiler warning in 'lib/rdcae.cpp'.
This commit is contained in:
Fred Gleason 2020-02-07 12:22:07 -05:00
parent c102a3f32e
commit b1ab3ab79c
2 changed files with 3 additions and 1 deletions

@ -19529,3 +19529,5 @@
2020-02-07 Fred Gleason <fredg@paravelsystems.com>
* Tweaked the CD rippers to display the 'hourglass' icon
appropriately.
2020-02-07 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up a compiler warning in 'lib/rdcae.cpp'.

@ -129,7 +129,7 @@ void RDCae::enableMetering(QList<int> *cards)
for(int i=0;i<cards->size();i++) {
if(cards->at(i)>=0) {
bool found=false;
for(unsigned j=0;j<i;j++) {
for(int j=0;j<i;j++) {
if(cards->at(i)==cards->at(j)) {
found=true;
}