Normal margins for branding text

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@792 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-28 20:17:05 +00:00
parent f3a516ecfb
commit 2badaad036

View file

@ -1784,9 +1784,9 @@ int CEXEBuild::doCommand(int which_token, LineParser &line, FILE *fp, const char
wsprintf(str, "Nullsoft Install System %s", NSIS_VERSION);
switch (trim) {
case 1: td.LTrimToString(IDC_VERSTR, str, 1); break;
case 2: td.RTrimToString(IDC_VERSTR, str, 1); break;
case 3: td.CTrimToString(IDC_VERSTR, str, 1); break;
case 1: td.LTrimToString(IDC_VERSTR, str, 4); break;
case 2: td.RTrimToString(IDC_VERSTR, str, 4); break;
case 3: td.CTrimToString(IDC_VERSTR, str, 4); break;
}
DWORD dwSize;