Merge branch 'sagi_dev' fix #14

This commit is contained in:
Sagi Dayan 2014-09-18 15:24:27 +03:00
commit 4af9675bad

View file

@ -50,7 +50,9 @@ bool CSV_Exporter::exportCalendar(calendarSchedule *calSched, CalendarDialog *ca
return false;
}
QTextStream out(&file);
QTextStream out(&file); //The output streem.
out.setCodec("UTF-8"); //Unicode 8
out << CSV_CALENDAR_HEADER << "\n"; // macro in header file
for (calendarCourse *coursePtr: *(calSched->getCourses())) //main loop - running though all courses