diff options
author | Michele Calgaro <[email protected]> | 2024-02-07 11:07:16 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-08 10:30:17 +0900 |
commit | 37ad15ad2c77711db7c9c4bbd62d5a1cb5749abc (patch) | |
tree | bf917f15cb7ca53eac56533097ed50241bb830d3 /languages/ruby/app_templates/kxt/appview.rb | |
parent | 12c95f5db577785d29c51643f20fe2c8700af7cb (diff) | |
download | tdevelop-37ad15ad2c77711db7c9c4bbd62d5a1cb5749abc.tar.gz tdevelop-37ad15ad2c77711db7c9c4bbd62d5a1cb5749abc.zip |
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'languages/ruby/app_templates/kxt/appview.rb')
-rw-r--r-- | languages/ruby/app_templates/kxt/appview.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/ruby/app_templates/kxt/appview.rb b/languages/ruby/app_templates/kxt/appview.rb index 4f63037f..2557b9da 100644 --- a/languages/ruby/app_templates/kxt/appview.rb +++ b/languages/ruby/app_templates/kxt/appview.rb @@ -15,14 +15,14 @@ class %{APPNAMESC}View < %{APPNAMESC}view_base # # Use this signal to change the content of the statusbar # - Q_SIGNALS 'signalChangeStatusbar(const TQString&)' + signals 'signalChangeStatusbar(const TQString&)' # # Use this signal to change the content of the caption # - Q_SIGNALS 'signalChangeCaption(const TQString&)' + signals 'signalChangeCaption(const TQString&)' - Q_SLOTS 'switchColors()', + slots 'switchColors()', 'settingsChanged()' def initialize(parent) |