I am porting a project from Microsoft Visual Studio 6.0 c++ to Linux c++ in the Qt environment. Qt4.8.5
I am having trouble with these two particular lines of code from that project.
COleDateTime old_time(1900,1,1,0,0,1);
DATE old = old_time;
COleDateTime old_time(1900,1,1,0,0,1);
DATE old = old_time;
To copy to clipboard, switch view to plain text mode
In Qt what are the equivalent syntax to accomplish this same thing. Nothing jumps out at me in any of the documentation.
would old_time above become an instance of the time_t struct, with the arguments populating members of that struct??
Any details would be appreciated.
Thank You
emp
Bookmarks