Changeset - 645e71d34885
[Not reviewed]
0 1 0
HanzZ - 14 years ago 2011-09-20 23:45:49
hanzz.k@gmail.com
don't use leaf().string()
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
backends/frotz/main.cpp
Show inline comments
 
@@ -214,7 +214,7 @@ class FrotzNetworkPlugin : public NetworkPlugin {
 
			directory_iterator end_itr;
 
			for (directory_iterator itr(p); itr != end_itr; ++itr) {
 
				if (extension(itr->path()) == ".z5") {
 
					games.push_back(itr->path().leaf().string());
 
					games.push_back(itr->path().leaf());
 
				}
 
			}
 
			return games;
0 comments (0 inline, 0 general)