From c521b2865e54ea528b71b9d7c2b3cc0c71239c38 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 18 Jan 2014 02:13:42 +0100 Subject: [PATCH] VstPlugin: use regular int for version property --- plugins/vst_base/VstPlugin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/vst_base/VstPlugin.h b/plugins/vst_base/VstPlugin.h index 16b31e25a..2c8635bbf 100644 --- a/plugins/vst_base/VstPlugin.h +++ b/plugins/vst_base/VstPlugin.h @@ -1,7 +1,7 @@ /* * VstPlugin.h - declaration of VstPlugin class * - * Copyright (c) 2005-2012 Tobias Doerffel + * Copyright (c) 2005-2014 Tobias Doerffel * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * @@ -61,7 +61,7 @@ public: return m_name; } - inline Sint32 version() const + inline int version() const { return m_version; } @@ -137,7 +137,7 @@ private: bool m_badDllFormat; QString m_name; - Sint32 m_version; + int m_version; QString m_vendorString; QString m_productString; QString m_currentProgramName;