summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-04-07 12:01:31 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-04-07 12:01:31 +0000
commitbd6e053741e849b1053e474a5832776475aa8217 (patch)
tree8356e3d76ee2f07d291dd18084211af8f8aca02e
parent14fded25d5c58f755789e2685359a642e918ba85 (diff)
allow '-' to act as L as the setting deletion marker in autoexec.ini
git-svn-id: http://svn.miranda-ng.org/main/trunk@4362 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/DbEditorPP/src/exportimport.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/DbEditorPP/src/exportimport.cpp b/plugins/DbEditorPP/src/exportimport.cpp
index e3679d7d67..ed7aa6b371 100644
--- a/plugins/DbEditorPP/src/exportimport.cpp
+++ b/plugins/DbEditorPP/src/exportimport.cpp
@@ -532,6 +532,7 @@ void importSettings(HANDLE hContact, char *importstring )
break;
case 'l':
case 'L':
+ case '-':
db_unset(hContact, module, setting);
break;
case 'n':