Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
Fixed bug with incorrect bar width in summary report #801
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkanovikov committed Feb 25, 2019
1 parent fc61fac commit c35fd4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/bin/scenarist-core
14 changes: 7 additions & 7 deletions src/bin/scenarist-desktop/main.cpp
Expand Up @@ -33,12 +33,12 @@ int main(int argc, char *argv[])


#ifdef Q_OS_WIN
//
// Настроим отлавливание ошибок
//
QString appDataFolderPath = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
QString crashReportsFolderPath = appDataFolderPath + QDir::separator() + "CrashReports";
QBreakpadInstance.setDumpPath(crashReportsFolderPath);
//
// Настроим отлавливание ошибок
//
QString appDataFolderPath = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
QString crashReportsFolderPath = appDataFolderPath + QDir::separator() + "CrashReports";
QBreakpadInstance.setDumpPath(crashReportsFolderPath);
#endif

//
Expand All @@ -54,5 +54,5 @@ int main(int argc, char *argv[])
application.startApp();
}

return application.exec();
return application.exec();
}

0 comments on commit c35fd4c

Please sign in to comment.