Skip to content
Snippets Groups Projects
Commit b3f30f42 authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

windows: fix participant screenshot

Change-Id: I41f847c4b60d3f303c5a92b61b0035b5e8c82b68
parent 4a583ed1
Branches
No related tags found
No related merge requests found
......@@ -1154,7 +1154,11 @@ CallAdapter::takeScreenshot(const QImage& image, const QString& path)
{
QString name = QString("%1 %2")
.arg(tr("Screenshot"))
#ifdef WIN32
.arg(QDateTime::currentDateTime().toString("yyyy-MM-dd HHmmss"));
#else
.arg(QDateTime::currentDateTime().toString(Qt::ISODate));
#endif
bool fileAlreadyExists = true;
int nb = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment