summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-03-29 23:28:00 +0300
committerAlexander Golubev <fatzer2@gmail.com>2024-03-29 23:30:28 +0300
commit174b64e809063a447ed18d4cbde6a5f44b61b117 (patch)
tree9de4726d051ee5883c81cfb63867dfe24f9107ff
parentc04e4905182ba9a5db632b5c59655603ad9f87f4 (diff)
downloadtdebase-174b64e809063a447ed18d4cbde6a5f44b61b117.tar.gz
tdebase-174b64e809063a447ed18d4cbde6a5f44b61b117.zip
kxkb: fix incorrect signal name introduced by 1fea8982f
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
-rw-r--r--kxkb/kcmlayout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kxkb/kcmlayout.cpp b/kxkb/kcmlayout.cpp
index f9fbf3c59..73a500e21 100644
--- a/kxkb/kcmlayout.cpp
+++ b/kxkb/kcmlayout.cpp
@@ -145,7 +145,7 @@ LayoutConfig::LayoutConfig(TQWidget *parent, const char *name)
connect( widget->bgColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed()));
connect( widget->fgColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed()));
- connect( widget->chkBgTransparent, TQ_SIGNAL( changed(const TQFont&) ), this, TQ_SLOT(changed()));
+ connect( widget->chkBgTransparent, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT(changed()));
connect( widget->labelFont, TQ_SIGNAL( fontSelected(const TQFont&) ), this, TQ_SLOT(changed()));
connect( widget->chkLabelShadow, TQ_SIGNAL( toggled( bool ) ), this, TQ_SLOT(changed()));
connect( widget->shColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed()));