Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
JvanKatwijk committed Nov 10, 2024
1 parent b363d73 commit c65b01b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
obsolete/
qt-dab-6.6/linux-bin
qt-dab-6.6/.qmake.stash
qt-dab-6.6/build
qt-dab-6.6/Makefile
qt-dab-6.6/Output
qt-dab-6.8/linux-bin
qt-dab-6.8/.qmake.stash
qt-dab-6.8/build
qt-dab-6.8/Makefile
qt-dab-6.8/Output
qt-dab-RC/linux-bin
qt-dab-RC/.qmake.stash
qt-dab-RC/build
Expand Down
Binary file modified qt-dab-6.8/linux-bin/qt-dab-6.8
Binary file not shown.
2 changes: 1 addition & 1 deletion qt-dab-6.8/support/scan-handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ QString scanHandler::getNextChannel (const QString &s) {
}

QString scanHandler::getChannel (int frequency) {
for (int i = 0; selectedBand [i]. key != nullptr; i ++)
for (int i = 0; selectedBand [i]. key != nullptr; i ++)
if (selectedBand [i]. fKHz == frequency / 1000)
return selectedBand [i]. key;
return "";
Expand Down
1 change: 1 addition & 0 deletions qt-devices/filereaders/xml-filereader/xml-descriptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Blocks b;
}

void xmlDescriptor::add_freqtoBlock (int blockno, int freq) {
fprintf (stderr, "adding freq %d %d\n", blockno, freq);
blockList. at (blockno). frequency = freq;
}

Expand Down
2 changes: 2 additions & 0 deletions src/backend/data/data-processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@

case 60:
my_dataHandler = new motHandler (mr, backgroundFlag);
if (appType == 7)
fprintf (stderr, "\nEPG handling under construction\n");
break;

}
Expand Down

0 comments on commit c65b01b

Please sign in to comment.