summaryrefslogtreecommitdiffstats
path: root/kxkb
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-03-29 23:28:00 +0300
committerSlávek Banko <slavek.banko@axis.cz>2024-03-31 17:55:48 +0200
commit459b5925bd04c585250a681e47fe1cac99c2780c (patch)
treeab40f6f0b382df326b560c6afe471e5fe9d468d3 /kxkb
parenta442aacb757d5d0f43081bac66c47588d5df0a44 (diff)
downloadtdebase-459b5925bd04c585250a681e47fe1cac99c2780c.tar.gz
tdebase-459b5925bd04c585250a681e47fe1cac99c2780c.zip
kxkb: fix incorrect signal name introduced by 1fea8982f
Signed-off-by: Alexander Golubev <fatzer2@gmail.com> (cherry picked from commit 174b64e809063a447ed18d4cbde6a5f44b61b117)
Diffstat (limited to 'kxkb')
-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()));