From 96a51f8634d091e4e1dcf13a0d3d6f5d8cff0003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 22 Dec 2011 14:56:56 +0100 Subject: [PATCH] Closeable does not have a notify signal --- client.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client.h b/client.h index b8ff3ed86b..c5600232db 100644 --- a/client.h +++ b/client.h @@ -81,7 +81,10 @@ class Client * To read only the caption as provided by WM_NAME, use the getter with an additional @c false value. **/ Q_PROPERTY(QString caption READ caption NOTIFY captionChanged) - // TODO: notify signal + /** + * Whether the window can be closed by the user. The value is evaluated each time the getter is called. + * Because of that no changed signal is provided. + **/ Q_PROPERTY(bool closeable READ isCloseable) // TODO: notify signal Q_PROPERTY(int desktop READ desktop WRITE setDesktop)