summaryrefslogtreecommitdiff
path: root/xml/skin.h
diff options
context:
space:
mode:
Diffstat (limited to 'xml/skin.h')
-rw-r--r--xml/skin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xml/skin.h b/xml/skin.h
index 4613199..69d96e6 100644
--- a/xml/skin.h
+++ b/xml/skin.h
@@ -28,21 +28,21 @@ public:
bool Limit( int ma, int min ) const {
return mMajor < ma ? true : (mMajor == ma ? mMinor <= min : false);
}
- bool cxVersion::operator==( const cxVersion &v ) const {
+ bool operator==( const cxVersion &v ) const {
return mMajor == v.mMajor && mMinor == v.mMinor;
}
- bool cxVersion::operator>=( const cxVersion &v ) const {
+ bool operator>=( const cxVersion &v ) const {
return Require( v.mMajor , v.mMinor);
}
- bool cxVersion::operator>=( const char *c ) const {
+ bool operator>=( const char *c ) const {
cxVersion v;
if( !v.Parse(c) ) return false;
return Require( v.mMajor , v.mMinor);
}
- bool cxVersion::operator<=( const cxVersion &v ) const {
+ bool operator<=( const cxVersion &v ) const {
return Limit( v.mMajor , v.mMinor );
}
- bool cxVersion::operator<=( const char *c ) const {
+ bool operator<=( const char *c ) const {
cxVersion v;
if( !v.Parse(c) ) return false;
return Limit( v.mMajor , v.mMinor);