diff options
Diffstat (limited to 'plugins/UserInfoEx/src/classMAnnivDate.h')
-rw-r--r-- | plugins/UserInfoEx/src/classMAnnivDate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/classMAnnivDate.h b/plugins/UserInfoEx/src/classMAnnivDate.h index 987408cb63..1dcfda6124 100644 --- a/plugins/UserInfoEx/src/classMAnnivDate.h +++ b/plugins/UserInfoEx/src/classMAnnivDate.h @@ -118,6 +118,6 @@ public: BYTE operator == (const SYSTEMTIME &st) { return IsEqual(st); };
BYTE operator == (const MAnnivDate &mda) { return IsEqual(mda); };
- void operator = (SYSTEMTIME &st) { SetDate(st); };
- void operator = (MAnnivDate &mda) { SetDate(mda); };
+ void operator=(SYSTEMTIME &st) { SetDate(st); };
+ void operator=(MAnnivDate &mda) { SetDate(mda); };
};
|