Build fixes

This commit is contained in:
Vinnie Falco
2013-09-27 05:14:59 -07:00
parent d5d37466e0
commit 1ef044d628
3 changed files with 8 additions and 10 deletions

View File

@@ -44,16 +44,16 @@ HTTPVersion& HTTPVersion::operator= (HTTPVersion const& other)
String HTTPVersion::toString () const
{
return String::fromNumber (major ()) + "." +
String::fromNumber (minor ());
return String::fromNumber (vmajor ()) + "." +
String::fromNumber (vminor ());
}
unsigned short HTTPVersion::major () const
unsigned short HTTPVersion::vmajor () const
{
return m_major;
}
unsigned short HTTPVersion::minor () const
unsigned short HTTPVersion::vminor () const
{
return m_minor;
}