diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2016-01-16 10:40:37 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2016-01-16 10:40:37 +0000 |
commit | 3489612b70c5354875b1bd38d4dc7647182ef27e (patch) | |
tree | 83d33e99ac09a5bd1b18088f24e68d93f48eb491 /plugins/TabSRMM/src/chat/log.cpp | |
parent | 66690d50556a16c0ce56b7c6b9c12c33d24ed158 (diff) |
Tabsrmm:
- Added settings for r16070 to GUI
- warning fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@16099 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/log.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp index e191ecdbca..5ec32871ae 100644 --- a/plugins/TabSRMM/src/chat/log.cpp +++ b/plugins/TabSRMM/src/chat/log.cpp @@ -805,7 +805,7 @@ static char* Log_CreateRTF(LOGSTREAMDATA *streamData) str.AppendFormat("\\cf%u ", OPTIONS_FONTCOUNT + streamData->crCount + crNickIndex);
}
- if (db_get_b(0, CHAT_MODULE, "NewlineAfterNames"))
+ if (g_Settings.bNewLineAfterNames)
pszTemp.AppendChar('\n');
Log_AppendRTF(streamData, TRUE, str, pszTemp, lin->ptszNick);
|