From: <zou...@us...> - 2008-02-12 22:09:34
|
Revision: 1006 http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=1006&view=rev Author: zouzou123gen Date: 2008-02-12 14:09:17 -0800 (Tue, 12 Feb 2008) Log Message: ----------- fix the sub-title of "choose folder" dialogs Modified Paths: -------------- dcplusplus/trunk/win32/WinUtil.cpp Modified: dcplusplus/trunk/win32/WinUtil.cpp =================================================================== --- dcplusplus/trunk/win32/WinUtil.cpp 2008-02-12 21:18:34 UTC (rev 1005) +++ dcplusplus/trunk/win32/WinUtil.cpp 2008-02-12 22:09:17 UTC (rev 1006) @@ -420,7 +420,8 @@ bi.hwndOwner = owner; bi.pszDisplayName = buf; - bi.lpszTitle = CT_("Choose folder"); + tstring title = T_("Choose folder"); + bi.lpszTitle = title.c_str(); bi.ulFlags = BIF_RETURNONLYFSDIRS | BIF_USENEWUI; bi.lParam = (LPARAM)target.c_str(); bi.lpfn = &browseCallbackProc; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |