mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
refs #800 Fixed some declaration shadows variable in outer scope warnings.
This commit is contained in:
committed by
Klaus Basan
parent
5791de6860
commit
6f972035ab
@@ -94,8 +94,8 @@ namespace BlackGui
|
||||
|
||||
if (volume > 100)
|
||||
{
|
||||
int v = volume - 100;
|
||||
volume = 100 + v / 5;
|
||||
int vol = volume - 100;
|
||||
volume = 100 + vol / 5;
|
||||
}
|
||||
|
||||
if (volume != ui->hs_Volume->value())
|
||||
|
||||
Reference in New Issue
Block a user