From 7737154772d112db9a5303866bb30f08a115dde0 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Mon, 15 Feb 2010 10:24:20 +0000 Subject: [PATCH] actually fix whitespace --- src/librarywatcher.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/librarywatcher.cpp b/src/librarywatcher.cpp index 42ea600ac..1dfc8efa1 100644 --- a/src/librarywatcher.cpp +++ b/src/librarywatcher.cpp @@ -46,12 +46,12 @@ void LibraryWatcher::AddDirectories(const DirectoryList& directories) { QString subdir(it.next()); fs_watcher_->addPath(subdir); paths_watched_[subdir] = dir; - #ifdef Q_OS_DARWIN - if (++total_watches_ > kMaxWatches) { - qWarning() << "Trying to watch more files than we can manage"; - return; - } - #endif + #ifdef Q_OS_DARWIN + if (++total_watches_ > kMaxWatches) { + qWarning() << "Trying to watch more files than we can manage"; + return; + } + #endif } } }