diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2009-06-04 14:40:00 +0800 |
---|---|---|
committer | Joel Bosveld <Joel.Bosveld@gmail.com> | 2009-07-01 21:04:14 +0800 |
commit | 8f734f64d025eeaecc9ca9ab5b250dc305a425ea (patch) | |
tree | 466e54a75d4dc749843f954eef9230cbed6bdbd4 /src | |
parent | 0a4cf3fd9e2f1eff7094da3ef49d270d72ac5452 (diff) | |
download | zcomp-8f734f64d025eeaecc9ca9ab5b250dc305a425ea.tar.gz zcomp-8f734f64d025eeaecc9ca9ab5b250dc305a425ea.tar.bz2 |
Make bool CompWindow::isFocussable () wrappable
Diffstat (limited to 'src')
-rw-r--r-- | src/window.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp index a98742b..4a4cbbd 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -4216,6 +4216,10 @@ bool WindowInterface::alpha () WRAPABLE_DEF (alpha); +bool +WindowInterface::isFocussable () + WRAPABLE_DEF (isFocussable); + Window CompWindow::id () { @@ -5123,8 +5127,10 @@ CompWindow::isViewable () const } bool -CompWindow::isFocussable () const +CompWindow::isFocussable () { + WRAPABLE_HND_FUNC_RETURN (14, bool, isFocussable); + if (priv->inputHint) return true; |