From: Aida JonikienÄ— aidas957@gmail.com
This makes shrinking the prefix path string easier in the next change. --- programs/wineboot/wineboot.rc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/programs/wineboot/wineboot.rc b/programs/wineboot/wineboot.rc index 898926203db..eecf5ced21c 100644 --- a/programs/wineboot/wineboot.rc +++ b/programs/wineboot/wineboot.rc @@ -42,8 +42,9 @@ CAPTION "Wine" FONT 8, "MS Shell Dlg" BEGIN ICON "", IDC_WAITICON, 3, 3, 10, 10 - LTEXT "The Wine configuration in %s is being updated, please wait...", - IDC_WAITTEXT, 40, 5, 150, 40, SS_NOPREFIX + LTEXT "The Wine configuration in", IDC_STATIC, 40, 5, 150, 8 + LTEXT "%s", IDC_WAITTEXT, 40, 13, 150, 8, SS_NOPREFIX + LTEXT "is being updated, please wait...", IDC_STATIC, 40, 21, 150, 8 END
/* @makedep: wineboot.manifest */