diff options
Diffstat (limited to 'plugins/Quotes/QuotesProviders.cpp')
-rw-r--r-- | plugins/Quotes/QuotesProviders.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Quotes/QuotesProviders.cpp b/plugins/Quotes/QuotesProviders.cpp index d5a65c470c..5fac2af14f 100644 --- a/plugins/Quotes/QuotesProviders.cpp +++ b/plugins/Quotes/QuotesProviders.cpp @@ -55,7 +55,7 @@ namespace void convert_contact_settings(HANDLE hContact)
{
WORD dwLogMode = DBGetContactSettingWord(hContact,QUOTES_PROTOCOL_NAME,DB_STR_QUOTE_LOG,static_cast<WORD>(lmDisabled));
- if((dwLogMode&lmInternalHistory) || (dwLogMode&lmExternalFile))
+ if ((dwLogMode&lmInternalHistory) || (dwLogMode&lmExternalFile))
{
DBWriteContactSettingByte(hContact,QUOTES_PROTOCOL_NAME,DB_STR_CONTACT_SPEC_SETTINGS,1);
}
|