From bd9cb12294dbbb582f31a2b1aa84ff645da765a4 Mon Sep 17 00:00:00 2001 From: Alexandre Almeida Date: Wed, 7 Jan 2015 21:50:26 -0200 Subject: [PATCH] Update ProjectVersion.h --- include/ProjectVersion.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/ProjectVersion.h b/include/ProjectVersion.h index 7326ce3c3..eed635a5c 100644 --- a/include/ProjectVersion.h +++ b/include/ProjectVersion.h @@ -32,22 +32,22 @@ class ProjectVersion : public QString { public: - ProjectVersion( const QString & _s ) : - QString( _s ) + ProjectVersion( const QString & s ) : + QString( s ) { } - static int compare( const ProjectVersion & _v1, - const ProjectVersion & _v2 ); + static int compare( const ProjectVersion & v1, + const ProjectVersion & v2 ); } ; -inline bool operator<( const ProjectVersion & _v1, const char * _str ) +inline bool operator<( const ProjectVersion & v1, const char * str ) { - return ProjectVersion::compare( _v1, ProjectVersion( _str ) ) < 0; + return ProjectVersion::compare( v1, ProjectVersion( str ) ) < 0; }