Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Calendar
  New Posts New Posts RSS Feed - non standard character in a header file
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

non standard character in a header file

 Post Reply Post Reply
Author
Message
sisira View Drop Down
Newbie
Newbie
Avatar

Joined: 14 April 2010
Location: United States
Status: Offline
Points: 2
Post Options Post Options   Thanks (0) Thanks(0)   Quote sisira Quote  Post ReplyReply Direct Link To This Post Topic: non standard character in a header file
    Posted: 20 July 2010 at 9:41am
In file

V13.4.0/Source/Calendar/XTPCalendarTimeLineViewParts.h there is a include statement with "\" character as sthe folder sepaeration.

 
#include "Common\XTPDrawHelpers.h"
 
This is not ANSI C++ standard. It resulted in wrong include filename as #include "CommonXTPDrawHelpers.h" .
 
So it should be changed to
 
#include "Common/XTPDrawHelpers.h"
 
Sisira
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 21 July 2010 at 2:54pm
fixed for next release
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.