Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Library : Other (not classified elsewhere) » [BUG] Win32DnD.cpp: tagPOINT has no member named ToString
[BUG] Win32DnD.cpp: tagPOINT has no member named ToString [message #24869] Tue, 02 February 2010 09:18 Go to next message
koldo is currently offline  koldo
Messages: 3355
Registered: August 2008
Senior Veteran
Hello all

There is a compiling problem in Win32DnD.cpp using MinGW because POINTL has not a ToString().

The solution is:

- Line 158
Change this:
LLOG("DragEnter " << pt);

with this:
LLOG("DragEnter " << AsString(pt));


- Line 181
Change this:
LLOG("DragOver " << pt << " keys: " << grfKeyState);

with this:
LLOG("DragOver " << AsString(pt) << " keys: " << grfKeyState);



Best regards
IƱaki
Re: [BUG] Win32DnD.cpp: tagPOINT has no member named ToString [message #24882 is a reply to message #24869] Tue, 02 February 2010 23:43 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
koldo wrote on Tue, 02 February 2010 03:18

Hello all

There is a compiling problem in Win32DnD.cpp using MinGW because POINTL has not a ToString().

The solution is:

- Line 158
Change this:
LLOG("DragEnter " << pt);

with this:
LLOG("DragEnter " << AsString(pt));


- Line 181
Change this:
LLOG("DragOver " << pt << " keys: " << grfKeyState);

with this:
LLOG("DragOver " << AsString(pt) << " keys: " << grfKeyState);




Ops. LLOG should not be active in the first place...

Mirek
Previous Topic: U++ 1977 compile broblem.
Next Topic: Microsoft Compiler Internal Error
Goto Forum:
  


Current Time: Thu Mar 28 15:27:29 CET 2024

Total time taken to generate the page: 0.01268 seconds