-
Fixed by adding:
#if (_ATL_VER >= 0x0900) && !defined(_SECURE_ATL)
#define _SECURE_ATL 1
#endif
to atlapp.h.
2009-06-24 07:15:46 UTC in Windows Template Library (WTL)
-
nenadstefanovic committed revision 400 to the Windows Template Library (WTL) SVN repository, changing 3 files.
2009-06-24 07:13:54 UTC in Windows Template Library (WTL)
-
VS2008 uses _SECURE_ATL code only, so we need to define _SECURE_ATL to 1 by default for our code that still checks for it.
2009-06-24 07:12:51 UTC in Windows Template Library (WTL)
-
Hi Sijmen,
I think that we fixed everything in SVN tree on SourceForge. Please replace all files with new ones, and be sure to run setup scripts again, since things changed there too.
Let us know if that works for you.
Cheers,
Nenad.
2009-06-22 10:17:06 UTC in Windows Template Library (WTL)
-
Fixed in atldlgs.h.
2009-06-21 21:14:02 UTC in Windows Template Library (WTL)
-
nenadstefanovic committed revision 396 to the Windows Template Library (WTL) SVN repository, changing 1 files.
2009-06-21 21:12:14 UTC in Windows Template Library (WTL)
-
From Yahoo WTL Group:
I found a small problem in the function "void SetOKText(LPCTSTR lpstrOKText)" at line #1533. I solved the problem replacing:
//::SendMessage(m_hWnd, BFFM_SETOKTEXT, (WPARAM)lpstr, 0L);
by:
::SendMessage(m_hWnd, BFFM_SETOKTEXT, 0, (LPARAM)lpstr);
at line #1541.
It works just fine now.
Philippe Marechal.
2009-06-21 21:10:35 UTC in Windows Template Library (WTL)
-
nenadstefanovic committed revision 395 to the Windows Template Library (WTL) SVN repository, changing 1 files.
2009-06-18 21:54:46 UTC in Windows Template Library (WTL)
-
nenadstefanovic committed revision 393 to the Windows Template Library (WTL) SVN repository, changing 3 files.
2009-06-17 10:50:57 UTC in Windows Template Library (WTL)
-
Hi Sijmen,
I looked into this and it seems that CLSID for the Platforms object in the Wizard changed for VS2008. We will update files to handle this.
If you want to make Wizards work right now, you can change lines with:
<OBJECT id="ProjWiz" classid="CLSID:D245F352-3F45-4516-B1E6-04608DA126CC" VIEWASTEXT>
to:
<OBJECT id="ProjWiz"...
2009-06-17 09:37:11 UTC in Windows Template Library (WTL)