diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-05-10 01:39:06 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-05-10 01:39:06 +0000 |
commit | b796db6d9f8032ecdd837218cc931c2df719557c (patch) | |
tree | 63cd94ec497697fddc870e79626d932991ce7e9c /Plugins/historylog/options.cpp | |
parent | dcaa9ceb525ea78f859ca4180fd6776eef83b6db (diff) |
Fix for multi-line messages (closes #41)
Added new variables to filename (closes #44)
Added option to ident multi-line messages (closes #43)
Fix for invalid chars in msgs filename
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@103 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/historylog/options.cpp')
-rw-r--r-- | Plugins/historylog/options.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Plugins/historylog/options.cpp b/Plugins/historylog/options.cpp index c942601..1773201 100644 --- a/Plugins/historylog/options.cpp +++ b/Plugins/historylog/options.cpp @@ -1,5 +1,5 @@ /*
-Copyright (C) 2006 Ricardo Pescuma Domenecci
+Copyright (C) 2008 Ricardo Pescuma Domenecci
This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@@ -41,8 +41,9 @@ BOOL AllowProtocol(const char *proto) static OptPageControl optionsControls[] = {
- { &opts.filename_pattern, CONTROL_TEXT, IDC_FILENAME, "FilenamePattern", (DWORD) _T("Log\\%group%\\%contact%.msgs") },
- { NULL, CONTROL_PROTOCOL_LIST, IDC_PROTOCOLS, "Enable%s", TRUE, (int)AllowProtocol }
+ { &opts.filename_pattern, CONTROL_TEXT, IDC_FILENAME, "FilenamePattern", (DWORD) _T("Log\\%group%\\%contact%.msgs") },
+ { &opts.ident_multiline_msgs, CONTROL_CHECKBOX, IDC_IDENT_MULTILINE,"IdentMultilineMsgs", TRUE },
+ { NULL, CONTROL_PROTOCOL_LIST, IDC_PROTOCOLS, "Enable%s", TRUE, (int)AllowProtocol }
};
|