summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jsc@umbraculum.org>2014-05-18 17:33:00 +0200
committerJonas Suhr Christensen <jsc@umbraculum.org>2014-05-18 17:33:00 +0200
commitd39f7c5c6f4ca8d4d23a20f9e1d11d4167a70bbe (patch)
tree9d424a62f693fe651bc039ad6d753c15730e55db
parentb69389f609c8c9c441d0251510f6b578a9437f6a (diff)
Added missing ; under win32.
-rw-r--r--plugingui/directory.cc2
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);