Name the parameters of wxGetOsVersion consistently

Use verMaj and verMin like almost everywhere instead of majorVsn and
minorVsn in a couple of places.
This commit is contained in:
Dimitri Schoolwerth
2015-06-24 04:49:14 +04:00
committed by Tobias Taschner
parent cbb799b1ae
commit 5983274af6
2 changed files with 11 additions and 11 deletions

View File

@@ -140,8 +140,8 @@ WXDLLIMPEXP_CORE wxVersionInfo wxGetLibraryVersionInfo();
WXDLLIMPEXP_BASE wxString wxGetOsDescription();
// Get OS version
WXDLLIMPEXP_BASE wxOperatingSystemId wxGetOsVersion(int *majorVsn = NULL,
int *minorVsn = NULL);
WXDLLIMPEXP_BASE wxOperatingSystemId wxGetOsVersion(int *verMaj = NULL,
int *verMin = NULL);
// Check is OS version is at least the specified major and minor version
WXDLLIMPEXP_BASE bool wxCheckOsVersion(int majorVsn, int minorVsn = 0);