diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-20 21:09:35 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-20 21:09:35 +0000 |
commit | b166399eeadfb34652a0171c966161d2fe9cd38c (patch) | |
tree | 84fbbc7484ee75316c33171dc781231a7f78e95f /plugins/FloatingContacts | |
parent | b64a4938d07384ddde24ddb7cccc316f7f12554a (diff) |
fix for FontService_RegisterFont usage
git-svn-id: http://svn.miranda-ng.org/main/trunk@12224 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FloatingContacts')
-rw-r--r-- | plugins/FloatingContacts/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/FloatingContacts/src/main.cpp b/plugins/FloatingContacts/src/main.cpp index a03968d55a..31399841e7 100644 --- a/plugins/FloatingContacts/src/main.cpp +++ b/plugins/FloatingContacts/src/main.cpp @@ -930,7 +930,7 @@ extern "C" int __declspec(dllexport) Load() char szId[20];
mir_snprintf(szId, SIZEOF(szId), "Font%d", i);
- FontService_RegisterFont(MODULE, szId, LPGENT("Floating contacts"), NULL, NULL, s_fonts[i], i+1, false, &lf, defColor);
+ FontService_RegisterFont(MODULE, szId, LPGENT("Floating contacts"), s_fonts[i], NULL, NULL, i + 1, false, &lf, defColor);
}
HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoded);
|