diff options
Diffstat (limited to 'kivio/kiviopart/ui/kivio_protection_panel.cpp')
-rw-r--r-- | kivio/kiviopart/ui/kivio_protection_panel.cpp | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/kivio/kiviopart/ui/kivio_protection_panel.cpp b/kivio/kiviopart/ui/kivio_protection_panel.cpp index 29ac5794..f9521151 100644 --- a/kivio/kiviopart/ui/kivio_protection_panel.cpp +++ b/kivio/kiviopart/ui/kivio_protection_panel.cpp @@ -26,21 +26,21 @@ #include "kivio_view.h" #include "kivio_command.h" -#include <qbitarray.h> -#include <qcheckbox.h> +#include <tqbitarray.h> +#include <tqcheckbox.h> #include <kaction.h> #include <kdebug.h> #include <klocale.h> -KivioProtectionPanel::KivioProtectionPanel( KivioView *view, QWidget *parent, const char *name ) - : KivioProtectionPanelBase(parent, name), m_pView(view) +KivioProtectionPanel::KivioProtectionPanel( KivioView *view, TQWidget *tqparent, const char *name ) + : KivioProtectionPanelBase(tqparent, name), m_pView(view) { - QObject::connect( m_checkWidth, SIGNAL(toggled(bool)), this, SLOT(togWidth(bool)) ); - QObject::connect( m_checkHeight, SIGNAL(toggled(bool)), this, SLOT(togHeight(bool)) ); - QObject::connect( m_checkAspect, SIGNAL(toggled(bool)), this, SLOT(togAspect(bool)) ); - QObject::connect( m_checkDeletion, SIGNAL(toggled(bool)), this, SLOT(togDelete(bool)) ); - QObject::connect( m_checkXPosition, SIGNAL(toggled(bool)), this, SLOT(togX(bool)) ); - QObject::connect( m_checkYPosition, SIGNAL(toggled(bool)), this, SLOT(togY(bool)) ); + TQObject::connect( m_checkWidth, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togWidth(bool)) ); + TQObject::connect( m_checkHeight, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togHeight(bool)) ); + TQObject::connect( m_checkAspect, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togAspect(bool)) ); + TQObject::connect( m_checkDeletion, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togDelete(bool)) ); + TQObject::connect( m_checkXPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togX(bool)) ); + TQObject::connect( m_checkYPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togY(bool)) ); } KivioProtectionPanel::~KivioProtectionPanel() @@ -233,7 +233,7 @@ void KivioProtectionPanel::updateCheckBoxes() return; } - QBitArray bits( NUM_PROTECTIONS ); + TQBitArray bits( NUM_PROTECTIONS ); int i; // Assume all protections are valid by default @@ -257,12 +257,12 @@ void KivioProtectionPanel::updateCheckBoxes() pStencil = m_pView->activePage()->selectedStencils()->next(); } - QObject::disconnect(m_checkWidth, SIGNAL(toggled(bool)), this, SLOT(togWidth(bool))); - QObject::disconnect(m_checkHeight, SIGNAL(toggled(bool)), this, SLOT(togHeight(bool))); - QObject::disconnect(m_checkAspect, SIGNAL(toggled(bool)), this, SLOT(togAspect(bool))); - QObject::disconnect(m_checkDeletion, SIGNAL(toggled(bool)), this, SLOT(togDelete(bool))); - QObject::disconnect(m_checkXPosition, SIGNAL(toggled(bool)), this, SLOT(togX(bool))); - QObject::disconnect(m_checkYPosition, SIGNAL(toggled(bool)), this, SLOT(togY(bool))); + TQObject::disconnect(m_checkWidth, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togWidth(bool))); + TQObject::disconnect(m_checkHeight, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togHeight(bool))); + TQObject::disconnect(m_checkAspect, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togAspect(bool))); + TQObject::disconnect(m_checkDeletion, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togDelete(bool))); + TQObject::disconnect(m_checkXPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togX(bool))); + TQObject::disconnect(m_checkYPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togY(bool))); // Enable and disable the check boxes based on what protections are available for(i = 0; i < NUM_PROTECTIONS; i++) { @@ -319,10 +319,10 @@ void KivioProtectionPanel::updateCheckBoxes() m_checkHeight->setChecked( pStencil->protection()->at(kpHeight) ); } - QObject::connect(m_checkWidth, SIGNAL(toggled(bool)), this, SLOT(togWidth(bool))); - QObject::connect(m_checkHeight, SIGNAL(toggled(bool)), this, SLOT(togHeight(bool))); - QObject::connect(m_checkAspect, SIGNAL(toggled(bool)), this, SLOT(togAspect(bool))); - QObject::connect(m_checkDeletion, SIGNAL(toggled(bool)), this, SLOT(togDelete(bool))); - QObject::connect(m_checkXPosition, SIGNAL(toggled(bool)), this, SLOT(togX(bool))); - QObject::connect(m_checkYPosition, SIGNAL(toggled(bool)), this, SLOT(togY(bool))); + TQObject::connect(m_checkWidth, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togWidth(bool))); + TQObject::connect(m_checkHeight, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togHeight(bool))); + TQObject::connect(m_checkAspect, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togAspect(bool))); + TQObject::connect(m_checkDeletion, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togDelete(bool))); + TQObject::connect(m_checkXPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togX(bool))); + TQObject::connect(m_checkYPosition, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(togY(bool))); } |