fixed qstring casting
This commit is contained in:
parent
6979de6576
commit
b092ca5ec2
1 changed files with 4 additions and 4 deletions
|
@ -61,10 +61,10 @@ bool CSV_Exporter::exportCalendar(calendarSchedule *calSched, CalendarDialog *ca
|
|||
int startM = coursePtr->getMinutesBegin();
|
||||
int endH = coursePtr->getHourEnd();
|
||||
int endM = coursePtr->getMinutesEnd();
|
||||
QString lecturer = QString(coursePtr->getLecturer().c_str()); //NOTE: STD String
|
||||
QString type = QString(coursePtr->getType().c_str());
|
||||
QString name = QString(coursePtr->getName().c_str());
|
||||
QString room = QString(coursePtr->getRoom().c_str());
|
||||
QString lecturer = coursePtr->getLecturer();
|
||||
QString type = coursePtr->getType();
|
||||
QString name = coursePtr->getName();
|
||||
QString room = coursePtr->getRoom();
|
||||
|
||||
QDate currentDate = cal->getStartDate(); // currentDate will iterate thou the semester
|
||||
|
||||
|
|
Loading…
Reference in a new issue