diff options
Diffstat (limited to 'plugins/UserInfoEx/src/classMTime.h')
-rw-r--r-- | plugins/UserInfoEx/src/classMTime.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/UserInfoEx/src/classMTime.h b/plugins/UserInfoEx/src/classMTime.h index 3388611c2f..eff510421a 100644 --- a/plugins/UserInfoEx/src/classMTime.h +++ b/plugins/UserInfoEx/src/classMTime.h @@ -105,11 +105,11 @@ public: int DBWriteStamp(MCONTACT hContact, LPCSTR pszModule, LPCSTR pszSetting);
// operatoren
- void operator = (DWORD& dwTimeStamp) { FromStampAsUTC(dwTimeStamp); };
- void operator = (FILETIME &ftFileTime) { Set(ftFileTime, FALSE); };
- void operator = (LARGE_INTEGER &liFileTime) { Set(liFileTime, FALSE); };
- void operator = (SYSTEMTIME &st) { Set(st, FALSE); };
- void operator = (const MTime &mt) { Set(mt); };
+ void operator=(DWORD& dwTimeStamp) { FromStampAsUTC(dwTimeStamp); };
+ void operator=(FILETIME &ftFileTime) { Set(ftFileTime, FALSE); };
+ void operator=(LARGE_INTEGER &liFileTime) { Set(liFileTime, FALSE); };
+ void operator=(SYSTEMTIME &st) { Set(st, FALSE); };
+ void operator=(const MTime &mt) { Set(mt); };
};
/**
|