ui: updated help dialog for Excluded Files & Directories with description of wildcards

This commit is contained in:
mlangkabel
2018-04-09 17:47:51 +02:00
parent 31b2c7d243
commit 535f7c1a9c
@@ -420,9 +420,13 @@ QtProjectWizzardContentPathsExclude::QtProjectWizzardContentPathsExclude(
{
setTitleString("Excluded Files & Directories");
setHelpString(
"These paths define the files and directories that will be left out from indexing.<br />"
"<br />"
"You can make use of environment variables with ${ENV_VAR}."
"<p>These paths define the files and directories that will be left out from indexing.</p>"
"<p>Hints:"
"<ul>"
"<li>You can use the wildcard \"*\" which represents characters except \"\\\" or \"/\" (e.g. \"src/*/test.h\" matches \"src/app/test.h\" but does not match \"src/app/widget/test.h\" or \"src/test.h\")</li>"
"<li>You can use the wildcard \"**\" which represents arbitrary characters (e.g. \"src**test.h\" matches \"src/app/test.h\" as well as \"src/app/widget/test.h\" or \"src/test.h\")</li>"
"<li>You can make use of environment variables with ${ENV_VAR}</li>"
"</ul></p>"
);
}