diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-05 16:54:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-05 16:54:27 +0000 |
commit | b665a90f50f09435aef5bc3b5b9da710e4558690 (patch) | |
tree | 3053606dcddc1b15f73e7af1fb2507afbf20f052 /plugins/XSoundNotify | |
parent | 6c01981a8452577f3751298c7cdbe59b3ae81d51 (diff) |
various menu items quirks, simplifications & optimization
git-svn-id: http://svn.miranda-ng.org/main/trunk@4319 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify')
-rw-r--r-- | plugins/XSoundNotify/src/Common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/XSoundNotify/src/Common.h b/plugins/XSoundNotify/src/Common.h index edccbabc4f..3b5edc0daa 100644 --- a/plugins/XSoundNotify/src/Common.h +++ b/plugins/XSoundNotify/src/Common.h @@ -25,9 +25,9 @@ struct XSN_Data HANDLE hContact;
TCHAR path[MAX_PATH];
-__inline XSN_Data(HANDLE _aContact, TCHAR *_path) :
- hContact(_aContact)
-{
- _tcsncpy(path, _path, SIZEOF(path));
-}
+ __forceinline XSN_Data(HANDLE _aContact, TCHAR *_path) :
+ hContact(_aContact)
+ {
+ _tcsncpy(path, _path, SIZEOF(path));
+ }
};
\ No newline at end of file |