#include "CalendarManager.h" CalendarManager::CalendarManager(calendarSchedule *ptr) { this->caliSchedPtr = ptr; } void CalendarManager::setCalendar(std::string html) { caliSchedPtr->setPage(html); } void CalendarManager::exportCalendarCSV() { if(CSV_Exporter::exportCalendar(this->caliSchedPtr)) { QMessageBox msgBox; msgBox.setText(QObject::tr("Exported Successfuly!")); msgBox.exec(); }else { QMessageBox msgBox; msgBox.setIcon(QMessageBox::Critical); msgBox.setText(QObject::tr("
Something went wrong...
Maybe:

" "
In case of a serious problem, please file a bug report.
thank you. OpenJCE teem")); msgBox.exec(); } }