diff options
author | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-05-18 17:33:00 +0200 |
---|---|---|
committer | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-05-18 17:33:00 +0200 |
commit | d39f7c5c6f4ca8d4d23a20f9e1d11d4167a70bbe (patch) | |
tree | 9d424a62f693fe651bc039ad6d753c15730e55db /plugingui | |
parent | b69389f609c8c9c441d0251510f6b578a9437f6a (diff) |
Added missing ; under win32.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/directory.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/directory.cc b/plugingui/directory.cc index d481d24..61b1441 100644 --- a/plugingui/directory.cc +++ b/plugingui/directory.cc @@ -320,7 +320,7 @@ bool Directory::isHidden(std::string path) { // TODO: Handle hidden and system files in windows #ifdef WIN32 - return false + return false; #else unsigned pos = path.find_last_of("/\\"); std::string entry = path.substr(pos+1); |