diff options
Diffstat (limited to 'certmanager/conf/appearanceconfigpage.cpp')
-rw-r--r-- | certmanager/conf/appearanceconfigpage.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/certmanager/conf/appearanceconfigpage.cpp b/certmanager/conf/appearanceconfigpage.cpp index 5d2a434cc..e0893233e 100644 --- a/certmanager/conf/appearanceconfigpage.cpp +++ b/certmanager/conf/appearanceconfigpage.cpp @@ -30,7 +30,7 @@ */ #include "appearanceconfigpage.h" -#include <qlayout.h> +#include <tqlayout.h> #include "appearanceconfigwidget.h" #include <kmessagebox.h> #include <klocale.h> @@ -38,13 +38,13 @@ #include <kdepimmacros.h> -AppearanceConfigurationPage::AppearanceConfigurationPage( QWidget * parent, const char * name ) +AppearanceConfigurationPage::AppearanceConfigurationPage( TQWidget * parent, const char * name ) : KCModule( parent, name ) { - QVBoxLayout* lay = new QVBoxLayout( this ); + TQVBoxLayout* lay = new TQVBoxLayout( this ); mWidget = new Kleo::AppearanceConfigWidget( this ); lay->addWidget( mWidget ); - connect( mWidget, SIGNAL( changed() ), this, SLOT( slotChanged() ) ); + connect( mWidget, TQT_SIGNAL( changed() ), this, TQT_SLOT( slotChanged() ) ); #ifndef HAVE_UNBROKEN_KCMULTIDIALOG load(); @@ -70,7 +70,7 @@ void AppearanceConfigurationPage::defaults() extern "C" { - KDE_EXPORT KCModule *create_kleopatra_config_appear( QWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kleopatra_config_appear( TQWidget *parent, const char * ) { AppearanceConfigurationPage *page = new AppearanceConfigurationPage( parent, "kleopatra_config_appear" ); |