diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-08-01 20:35:37 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-08-01 20:35:37 +0000 |
commit | 75ab0a8ce1b258a6505eb2c8b131681a982028ea (patch) | |
tree | 25fbf8965894f92016bdbd5dc08d8cfc86a0bc1c /plugins/Folders | |
parent | e3c362ffaf05002b55b37941250906069ef27100 (diff) |
fix for the correct escape sequences
git-svn-id: http://svn.miranda-ng.org/main/trunk@1313 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Folders')
-rw-r--r-- | plugins/Folders/src/dlg_handlers.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/Folders/src/dlg_handlers.cpp b/plugins/Folders/src/dlg_handlers.cpp index 2cf0b98f0f..4d507ce31c 100644 --- a/plugins/Folders/src/dlg_handlers.cpp +++ b/plugins/Folders/src/dlg_handlers.cpp @@ -355,7 +355,7 @@ INT_PTR CALLBACK DlgProcVariables(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPa Don\'t forget to click on Apply to save the changes. If you don\'t then the changes won\'t\r\n\
be saved to the database, they will only be valid for this session.\r\n\r\n\
Variable string\t\tWhat it expands to:\r\n\
-%miranda_path%\tExpands to your miranda path (e.g: c:\program files\miranda im).\r\n\
+%miranda_path%\tExpands to your miranda path (e.g: c:\\program files\\miranda im).\r\n\
%profile_path%\t\tExpands to your profile path - the value found in mirandaboot.ini,\r\n\
\t\t\tProfileDir section (usually inside miranda\'s folder).\r\n\
%current_profile%\tExpands to your current profile name without the extenstion.\r\n\
@@ -365,17 +365,17 @@ The plugin can also expand environment variables; the variables are specified li program that can use environment variables, i.e. %<env variable>%.\r\n\
Note: Environment variables are expanded before any Miranda variables. So if you have, for\r\n\
example, %profile_path% defined as a system variable then it will be expanded to that value\r\n\
-instead of expanding to Miranda\’s profile path.\r\n\r\n\
+instead of expanding to Miranda’s profile path.\r\n\r\n\
Examples:\r\n\
-If the value for the ProfileDir inside mirandaboot.ini, ProfileDir section is \'.\profiles\', current\r\n\
-profile is \'default.dat\' and miranda\'s path is \'c:\program files\miranda im\' then:\r\n\
-%miranda_path%\t\t\twill expand to \'c:\program files\miranda im\'\r\n\
-%profile_path%\t\t\twill expand to \'c:\program files\miranda im\profiles\'\r\n\
+If the value for the ProfileDir inside mirandaboot.ini, ProfileDir section is \'.\\profiles\\', current\r\n\
+profile is \'default.dat\' and miranda\'s path is \'c:\\program files\\miranda im\\' then:\r\n\
+%miranda_path%\t\t\twill expand to \'c:\\program files\\miranda im\\'\r\n\
+%profile_path%\t\t\twill expand to \'c:\\program files\\miranda im\\profiles\\'\r\n\
%current_profile%\t\t\twill expand to \'default\'\r\n\
%temp%\t\t\t\twill expand to the temp folder of the current user.\r\n\
-%profile_path%\%current_profile%\twill expand to \'c:\program files\miranda im\profiles\default\'\r\n\
-%miranda_path%\plugins\config\twill expand to \'c:\program files\miranda im\plugins\config\'\r\n\
-\' %miranda_path%\\\\\\\\ \'\t\twill expand to \'c:\program files\miranda im\'\r\n\
+%profile_path%\\%current_profile%\twill expand to \'c:\\program files\\miranda im\\profiles\\default\\'\r\n\
+%miranda_path%\\plugins\\config\twill expand to \'c:\\program files\\miranda im\\plugins\\config\\'\r\n\
+\' %miranda_path%\\\\\\\\ \'\t\twill expand to \'c:\\program files\\miranda im\\'\r\n\
notice that the spaces at the beginning and the end of the string are trimmed, as well as the last \\\
"));
|