Skip to content

Commit

Permalink
Update header file to match functions in code file
Browse files Browse the repository at this point in the history
Update the parameter names in the header file to match the code.
In the code a few leading underscores were removed in parameter names.
Since we are using now the m_ prefix in the class instance variables
we do not need to use the _ prefix in the parameters anymore.
  • Loading branch information
kmdewaal committed Jul 25, 2021
1 parent 070a212 commit 213a816
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/libs/libmythtv/channelscan/channelscan_sm.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ class ChannelScanSM : public MPEGStreamListener,
friend class AnalogSignalHandler;

public:
ChannelScanSM(ScanMonitor *_scan_monitor,
const QString &_cardtype, ChannelBase* _channel, int _sourceID,
ChannelScanSM(ScanMonitor *scan_monitor,
const QString &cardtype, ChannelBase* channel, int sourceID,
std::chrono::milliseconds signal_timeout, std::chrono::milliseconds channel_timeout,
QString _inputname, bool test_decryption);
QString inputname, bool test_decryption);
~ChannelScanSM() override;

void StartScanner(void);
Expand Down

0 comments on commit 213a816

Please sign in to comment.