diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 1a5bd91..369b480 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -3342,8 +3342,12 @@ FbTk::FbString FluxboxWindow::getWMRole() const { | |||
3342 | return (m_client ? m_client->getWMRole() : "FluxboxWindow"); | 3342 | return (m_client ? m_client->getWMRole() : "FluxboxWindow"); |
3343 | } | 3343 | } |
3344 | 3344 | ||
3345 | FbTk::FbString FluxboxWindow::getTextProperty(Atom prop) const { | 3345 | long FluxboxWindow::getCardinalProperty(Atom prop,bool*exists) const { |
3346 | return (m_client ? m_client->getTextProperty(prop) : Focusable::getTextProperty(prop)); | 3346 | return (m_client ? m_client->getCardinalProperty(prop,exists) : Focusable::getCardinalProperty(prop,exists)); |
3347 | } | ||
3348 | |||
3349 | FbTk::FbString FluxboxWindow::getTextProperty(Atom prop,bool*exists) const { | ||
3350 | return (m_client ? m_client->getTextProperty(prop,exists) : Focusable::getTextProperty(prop,exists)); | ||
3347 | } | 3351 | } |
3348 | 3352 | ||
3349 | bool FluxboxWindow::isTransient() const { | 3353 | bool FluxboxWindow::isTransient() const { |