diff options
Diffstat (limited to 'kspread/dialogs/kspread_dlg_pasteinsert.cc')
-rw-r--r-- | kspread/dialogs/kspread_dlg_pasteinsert.cc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kspread/dialogs/kspread_dlg_pasteinsert.cc b/kspread/dialogs/kspread_dlg_pasteinsert.cc index 98a37296..83e8bce3 100644 --- a/kspread/dialogs/kspread_dlg_pasteinsert.cc +++ b/kspread/dialogs/kspread_dlg_pasteinsert.cc @@ -20,13 +20,13 @@ * Boston, MA 02110-1301, USA. */ -#include <qlayout.h> +#include <tqlayout.h> #include <klocale.h> #include <kbuttonbox.h> -#include <qbuttongroup.h> +#include <tqbuttongroup.h> #include <kdebug.h> -#include <qradiobutton.h> -#include <qcheckbox.h> +#include <tqradiobutton.h> +#include <tqcheckbox.h> #include "kspread_dlg_pasteinsert.h" #include "kspread_canvas.h" @@ -37,25 +37,25 @@ using namespace KSpread; -PasteInsertDialog::PasteInsertDialog( View* parent, const char* name,const QRect &_rect) - : KDialogBase( parent, name, TRUE,i18n("Paste Inserting Cells"),Ok|Cancel ) +PasteInsertDialog::PasteInsertDialog( View* tqparent, const char* name,const TQRect &_rect) + : KDialogBase( tqparent, name, TRUE,i18n("Paste Inserting Cells"),Ok|Cancel ) { - m_pView = parent; + m_pView = tqparent; rect=_rect; - QWidget *page = new QWidget( this ); + TQWidget *page = new TQWidget( this ); setMainWidget(page); - QVBoxLayout *lay1 = new QVBoxLayout( page, 0, spacingHint() ); + TQVBoxLayout *lay1 = new TQVBoxLayout( page, 0, spacingHint() ); - QButtonGroup *grp = new QButtonGroup( 1, QGroupBox::Horizontal, i18n("Insert"),page); + TQButtonGroup *grp = new TQButtonGroup( 1, Qt::Horizontal, i18n("Insert"),page); grp->setRadioButtonExclusive( TRUE ); - grp->layout(); + grp->tqlayout(); lay1->addWidget(grp); - rb1 = new QRadioButton( i18n("Move towards right"), grp ); - rb2 = new QRadioButton( i18n("Move towards bottom"), grp ); + rb1 = new TQRadioButton( i18n("Move towards right"), grp ); + rb2 = new TQRadioButton( i18n("Move towards bottom"), grp ); rb1->setChecked(true); - connect( this, SIGNAL( okClicked() ), this, SLOT( slotOk() ) ); + connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotOk() ) ); } void PasteInsertDialog::slotOk() |