mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 23:43:42 +00:00
Removed warnings
This commit is contained in:
parent
3f7fb99f58
commit
532702f7fb
43 changed files with 191 additions and 142 deletions
|
|
@ -225,9 +225,9 @@ void SignalgeneratorWidget::setFrequency(double frequency)
|
|||
ui->frequency->setValue(frequency);
|
||||
}
|
||||
|
||||
void SignalgeneratorWidget::setPort(int port)
|
||||
void SignalgeneratorWidget::setPort(unsigned int port)
|
||||
{
|
||||
if(port < 0 || port > portCheckboxes.size()) {
|
||||
if(port > portCheckboxes.size()) {
|
||||
return;
|
||||
}
|
||||
if(port == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue