diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-27 08:58:18 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-27 08:58:18 +0000 |
commit | 47f4d5c03a16988eab91de5e26218f8e0d35b8b8 (patch) | |
tree | ed8bb521a4301dfeea2e918f50830819db524762 /plugins/Boltun/src/config.h | |
parent | 68a6aa6db2eb165cfbebebc891a41be2f6917f44 (diff) |
Boltun common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13194 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Boltun/src/config.h')
-rw-r--r-- | plugins/Boltun/src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Boltun/src/config.h b/plugins/Boltun/src/config.h index a51240ad70..a1cd72c7de 100644 --- a/plugins/Boltun/src/config.h +++ b/plugins/Boltun/src/config.h @@ -27,8 +27,8 @@ template <class T, class BaseClass> class Property
{
public:
- typedef const T (__thiscall BaseClass::*Getter)();
- typedef const T (__thiscall BaseClass::*Setter)(const T);
+ typedef const T(__thiscall BaseClass::*Getter)();
+ typedef const T(__thiscall BaseClass::*Setter)(const T);
private:
const Getter getter;
const Setter setter;
|