Skip to content

Commit

Permalink
lua
Browse files Browse the repository at this point in the history
  • Loading branch information
dxli committed Sep 12, 2023
1 parent 5117979 commit 43ebab2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lcUI/operationloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class FolderFinder
return ret;

std::string binFolder = QDir{QCoreApplication::applicationDirPath()}.canonicalPath().toStdString();
std::cout<<"binFolder: "<<binFolder<<std::endl;
ret = searchSubFolders(inputFolder);
if (!ret.empty())
return ret;
Expand Down Expand Up @@ -57,7 +58,7 @@ class FolderFinder

bool isValid(const std::string& path) const
{
std::cout<<"Test "<<path + operationsLua<<": "<<QFileInfo{QString{path.c_str()} + operationsLua}.exists();
std::cout<<"Test "<<path + operationsLua<<": "<<QFileInfo{QString{path.c_str()} + operationsLua}.exists()<<std::endl;
return QFileInfo{QString{path.c_str()} + operationsLua}.exists();
}
};
Expand Down

0 comments on commit 43ebab2

Please sign in to comment.