From 174b64e809063a447ed18d4cbde6a5f44b61b117 Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Fri, 29 Mar 2024 23:28:00 +0300 Subject: [PATCH] kxkb: fix incorrect signal name introduced by 1fea8982f Signed-off-by: Alexander Golubev --- kxkb/kcmlayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()));