added rtl support

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5212 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-07-18 20:47:58 +00:00
parent 8e1b521859
commit f1b8604bcb
6 changed files with 22 additions and 1 deletions

View file

@ -3,6 +3,7 @@
#include "input.h"
#include "defs.h"
#include "nsis.h"
#include "rtl.h"
extern struct nsDialog g_dialog;
@ -73,5 +74,7 @@ int NSDFUNC PopPlacement(int *x, int *y, int *width, int *height)
*height = ConvertPlacement(buf, dialogHeight, 1);
ConvertPosToRTL(x, *width, dialogWidth);
return 0;
}