diff options
Diffstat (limited to 'cppu/source/threadpool/jobqueue.cxx')
-rw-r--r-- | cppu/source/threadpool/jobqueue.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cppu/source/threadpool/jobqueue.cxx b/cppu/source/threadpool/jobqueue.cxx index 338a94cf2..56793f609 100644 --- a/cppu/source/threadpool/jobqueue.cxx +++ b/cppu/source/threadpool/jobqueue.cxx @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -187,10 +188,12 @@ namespace cppu_threadpool { return m_lstCallstack.empty(); } - sal_Bool JobQueue::isBusy() + sal_Bool JobQueue::isBusy() const { return m_nToDo > 0; } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |