diff options
Diffstat (limited to 'protocols/IcqOscarJ/src/db.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/IcqOscarJ/src/db.cpp b/protocols/IcqOscarJ/src/db.cpp index fc96fbea9f..cdf2caccdd 100644 --- a/protocols/IcqOscarJ/src/db.cpp +++ b/protocols/IcqOscarJ/src/db.cpp @@ -52,7 +52,7 @@ void ChangeInfoData::LoadSettingsFromDb(int keepChanged) if (!ppro->getSetting(NULL, si.szDbSetting, &dbv)) {
switch (dbv.type) {
case DBVT_ASCIIZ:
- sid.value = (LPARAM)ppro->getSettingStringUtf(NULL, si.szDbSetting, NULL);
+ sid.value = (LPARAM)ppro->getSettingStringUtf(NULL, si.szDbSetting, nullptr);
break;
case DBVT_UTF8:
@@ -75,7 +75,7 @@ void ChangeInfoData::LoadSettingsFromDb(int keepChanged) #ifdef _DEBUG
default:
- MessageBoxA(NULL, "That's not supposed to happen either", "Huh?", MB_OK);
+ MessageBoxA(nullptr, "That's not supposed to happen either", "Huh?", MB_OK);
break;
#endif
}
|