diff options
Diffstat (limited to 'src/configconnectoptions.cpp')
-rw-r--r-- | src/configconnectoptions.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/configconnectoptions.cpp b/src/configconnectoptions.cpp index e0cddfe..887bcda 100644 --- a/src/configconnectoptions.cpp +++ b/src/configconnectoptions.cpp @@ -18,23 +18,23 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include "configconnectoptions.h" -#include <qcheckbox.h> +#include <tqcheckbox.h> #include <kcombobox.h> #include <iostream> -ConfigConnectOptions::ConfigConnectOptions(QWidget *parent) : ConfigConnectOptionsBase(parent) +ConfigConnectOptions::ConfigConnectOptions(TQWidget *parent) : ConfigConnectOptionsBase(parent) { dialogModified=false; // connect changed signals to own signal - connect(AutoConnectProfileComboBox,SIGNAL(textChanged ( const QString & )),this,SIGNAL(changed())); - connect(checkMinimizeAfterConnectCheck,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); - connect(SilentQuitcheckBox,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); - connect(DoAutoConnectCheckBox,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); + connect(AutoConnectProfileComboBox,TQT_SIGNAL(textChanged ( const TQString & )),this,TQT_SIGNAL(changed())); + connect(checkMinimizeAfterConnectCheck,TQT_SIGNAL(stateChanged ( int )),this,TQT_SIGNAL(changed())); + connect(SilentQuitcheckBox,TQT_SIGNAL(stateChanged ( int )),this,TQT_SIGNAL(changed())); + connect(DoAutoConnectCheckBox,TQT_SIGNAL(stateChanged ( int )),this,TQT_SIGNAL(changed())); // connect changed to slot - connect(this,SIGNAL(changed ()),this,SLOT(dialogChanged())); + connect(this,TQT_SIGNAL(changed ()),this,TQT_SLOT(dialogChanged())); } |