summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-11-12 23:51:06 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-11-12 23:51:06 +0300
commitf4ae133ee3ba85c3ee2387cae24aaf25a6ae5c74 (patch)
tree889405636cb8e16187aed9ba8a44406aaef1ef17 /plugins/MirandaG15
parent30dd1623d85c3f8719b9668bc03b4bda26adc2e9 (diff)
NULL -> 0
Diffstat (limited to 'plugins/MirandaG15')
-rw-r--r--plugins/MirandaG15/src/CConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/CConfig.cpp b/plugins/MirandaG15/src/CConfig.cpp
index 9416e4ef57..8f2c452d84 100644
--- a/plugins/MirandaG15/src/CConfig.cpp
+++ b/plugins/MirandaG15/src/CConfig.cpp
@@ -330,7 +330,7 @@ void CConfig::LoadFontSettings(int iFont)
// Name
mir_snprintf(szSetting, "Font%dName", iFont);
DBVARIANT dbv;
- if (db_get_ws(NULL, "MirandaG15", szSetting, &dbv))
+ if (db_get_ws(0, "MirandaG15", szSetting, &dbv))
mir_wstrcpy(m_logfont[iFont].lfFaceName, L"Small Fonts");
else {
mir_wstrcpy(m_logfont[iFont].lfFaceName, dbv.pwszVal);