Edited open() function to be more descriptive. Set to openFileActual

This commit is contained in:
Maxim Stewart 2017-06-17 05:18:18 -05:00
parent e59dd980bd
commit 6141263f45
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ private:
void setAsset(QString);
void searchMeshFiles(QString path);
void openFile();
void open(QString);
void openFileActual(QString);
void takeScreenShot();
void setDirList();
void aboutTool();

View File

@ -210,10 +210,10 @@ void MainWindow::searchMeshFiles(QString path)
void MainWindow::openFile()
{
QString fileName = QFileDialog::getOpenFileName(this, "Open File", "", "Mesh (*.msh)");
open(fileName);
openFileActual(fileName);
}
void MainWindow::open(QString fileName)
void MainWindow::openFileActual(QString fileName)
{
if(!fileName.isEmpty())
emit loadFile(fileName);
@ -259,7 +259,7 @@ void MainWindow::resizeEvent(QResizeEvent * e)
void MainWindow::on_fileListView_doubleClicked(const QModelIndex &index)
{
QString clickedFile = fmodel->fileInfo(index).absoluteFilePath();
open(clickedFile);
openFileActual(clickedFile);
}
void MainWindow::on_dirDropDownList_currentTextChanged(const QString &arg1)