From 626a2692e59670cc8b78a38a6e6dd9c4811ab0ce Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sun, 27 Oct 2013 11:18:38 -0500 Subject: [PATCH] Removed an unnecessary path.string() during folder population. --- src/SystemData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SystemData.cpp b/src/SystemData.cpp index aef0c808b..9a308510a 100644 --- a/src/SystemData.cpp +++ b/src/SystemData.cpp @@ -129,7 +129,7 @@ void SystemData::populateFolder(FolderData* folder) { filePath = (*dir).path(); - if(filePath.stem().string().empty()) + if(filePath.stem().empty()) continue; //this is a little complicated because we allow a list of extensions to be defined (delimited with a space)