mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-26 15:03:47 +01:00
Regularize casts as (int), so they are easier to find and review
This commit is contained in:
@@ -177,7 +177,7 @@ bool ViewInfo::ReadXMLAttribute(const wxChar *attr, const wxChar *value)
|
||||
if (!wxStrcmp(attr, wxT("vpos"))) {
|
||||
long longVpos;
|
||||
wxString(value).ToLong(&longVpos);
|
||||
vpos = int(longVpos);
|
||||
vpos = (int)(longVpos);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user