diff options
Diffstat (limited to 'malloryclient/config/malloryconfig.cpp')
-rw-r--r-- | malloryclient/config/malloryconfig.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/malloryclient/config/malloryconfig.cpp b/malloryclient/config/malloryconfig.cpp index c482ff3..c3ec0c6 100644 --- a/malloryclient/config/malloryconfig.cpp +++ b/malloryclient/config/malloryconfig.cpp @@ -10,11 +10,11 @@ #include <tdeconfig.h> #include <tdelocale.h> #include <tdeglobal.h> -#include <ntqcheckbox.h> -#include <ntqslider.h> -#include <ntqspinbox.h> -#include <ntqcombobox.h> -#include <ntqwhatsthis.h> +#include <tqcheckbox.h> +#include <tqslider.h> +#include <tqspinbox.h> +#include <tqcombobox.h> +#include <tqwhatsthis.h> #include "malloryconfig.h" #include "configdialog.h" @@ -34,15 +34,15 @@ MalloryConfig::MalloryConfig(TDEConfig* config, TQWidget* parent) load(config); // Setup the connections. - connect(m_dialog->m_borderSize, SIGNAL(valueChanged(int)), this, SIGNAL(changed())); - connect(m_dialog->m_titleSize, SIGNAL(valueChanged(int)), this, SIGNAL(changed())); - connect(m_dialog->m_buttonSize, SIGNAL(valueChanged(int)), this, SIGNAL(changed())); - connect(m_dialog->m_lessRounded, SIGNAL(toggled(bool)), this, SIGNAL(changed())); - connect(m_dialog->m_buttonStyle, SIGNAL(activated(int)), this, SIGNAL(changed())); - connect(m_dialog->m_resizeHandle, SIGNAL(toggled(bool)), this, SIGNAL(changed())); - connect(m_dialog->m_superSize, SIGNAL(toggled(bool)), this, SIGNAL(changed())); - connect(m_dialog->m_titleShadow, SIGNAL(toggled(bool)), this, SIGNAL(changed())); - connect(m_dialog->m_titleShadowSize, SIGNAL(valueChanged(int)), this, SIGNAL(changed())); + connect(m_dialog->m_borderSize, TQ_SIGNAL(valueChanged(int)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_titleSize, TQ_SIGNAL(valueChanged(int)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_buttonSize, TQ_SIGNAL(valueChanged(int)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_lessRounded, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_buttonStyle, TQ_SIGNAL(activated(int)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_resizeHandle, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_superSize, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_titleShadow, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(changed())); + connect(m_dialog->m_titleShadowSize, TQ_SIGNAL(valueChanged(int)), this, TQ_SIGNAL(changed())); } |