From 550e346d7b71a77baa3d04740cfc39f809ce059d Mon Sep 17 00:00:00 2001 From: Aire-One Date: Tue, 26 Nov 2019 13:49:42 +0100 Subject: [PATCH] Add inheritance tags to `docs/common/object.ldoc`. --- docs/common/object.ldoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/common/object.ldoc b/docs/common/object.ldoc index df7227630..ed21bedac 100644 --- a/docs/common/object.ldoc +++ b/docs/common/object.ldoc @@ -3,6 +3,7 @@ -- @tparam string name The name of the signal. -- @tparam function func The callback that should be disconnected. -- @method disconnect_signal +-- @baseclass gears.object --- Emit a signal. -- @@ -11,11 +12,13 @@ -- function receives the object as first argument and then any extra -- arguments that are given to emit_signal(). -- @method emit_signal +-- @baseclass gears.object --- Connect to a signal. -- @tparam string name The name of the signal. -- @tparam function func The callback to call when the signal is emitted. -- @method connect_signal +-- @baseclass gears.object --- Connect to a signal weakly. -- @@ -28,3 +31,4 @@ -- @tparam string name The name of the signal. -- @tparam function func The callback to call when the signal is emitted. -- @method weak_connect_signal +-- @baseclass gears.object