Don't use old naming convention in new methods.

Remove the _ prefix from the parameters to the newly added
ProjectRenderer::getFileExtensionFromFormat.

This naming convention is being phased out.
This commit is contained in:
Ryan Roden-Corrent
2015-09-04 21:48:00 -04:00
parent 6b8406241b
commit ea838c428d
2 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ public:
static ExportFileFormats getFileFormatFromExtension(
const QString & _ext );
static QString getFileExtensionFromFormat( ExportFileFormats _fmt );
static QString getFileExtensionFromFormat( ExportFileFormats fmt );
static const FileEncodeDevice fileEncodeDevices[];

View File

@@ -125,9 +125,9 @@ ProjectRenderer::ExportFileFormats ProjectRenderer::getFileFormatFromExtension(
QString ProjectRenderer::getFileExtensionFromFormat(
ExportFileFormats _fmt )
ExportFileFormats fmt )
{
return fileEncodeDevices[_fmt].m_extension;
return fileEncodeDevices[fmt].m_extension;
}