Skip to content

Commit

Permalink
Missing file from last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Apr 28, 2016
1 parent 153a298 commit d8a8af9
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -436,15 +436,15 @@ EquationTreeWidget::EquationTreeWidget(TransformationsWidget *pTransformationWid
connect(this, SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)), mpTransformationWidget, SLOT(fetchEquationData(QTreeWidgetItem*,int)));
}

TransformationsWidget::TransformationsWidget(QString infoXMLFullFileName, MainWindow *pMainWindow)
: mpMainWindow(pMainWindow), mInfoJSONFullFileName(infoXMLFullFileName)
TransformationsWidget::TransformationsWidget(QString infoJSONFullFileName, MainWindow *pMainWindow)
: mpMainWindow(pMainWindow), mInfoJSONFullFileName(infoJSONFullFileName)
{
if (!mInfoJSONFullFileName.endsWith("_info.json")) {
mProfJSONFullFileName = "";
mProfilingDataRealFileName = "";
} else {
mProfJSONFullFileName = infoXMLFullFileName.left(infoXMLFullFileName.size() - 9) + "prof.json";
mProfilingDataRealFileName = infoXMLFullFileName.left(infoXMLFullFileName.size() - 9) + "prof.realdata";
mProfJSONFullFileName = infoJSONFullFileName.left(infoJSONFullFileName.size() - 9) + "prof.json";
mProfilingDataRealFileName = infoJSONFullFileName.left(infoJSONFullFileName.size() - 9) + "prof.realdata";
}
setWindowIcon(QIcon(":/Resources/icons/debugger.svg"));
setWindowTitle(QString(Helper::applicationName).append(" - ").append(Helper::transformationalDebugger));
Expand Down

0 comments on commit d8a8af9

Please sign in to comment.