summaryrefslogtreecommitdiffstats
path: root/src/kile/tabulardialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/tabulardialog.cpp')
-rw-r--r--src/kile/tabulardialog.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/kile/tabulardialog.cpp b/src/kile/tabulardialog.cpp
index d05156e..113f66b 100644
--- a/src/kile/tabulardialog.cpp
+++ b/src/kile/tabulardialog.cpp
@@ -431,15 +431,15 @@ TabCellDialog::TabCellDialog(TQWidget *parent, TabularCell::Data *data,
// signals and slots
- connect(m_pbFrame1, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotFramebuttonClicked()));
- connect(m_pbFrame2, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotFramebuttonClicked()));
- connect(m_pbFrame3, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotFramebuttonClicked()));
- connect(m_pbFrame4, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotFramebuttonClicked()));
- connect(this, TQT_SIGNAL(user1Clicked()),this, TQT_SLOT(slotResetClicked()));
+ connect(m_pbFrame1, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFramebuttonClicked()));
+ connect(m_pbFrame2, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFramebuttonClicked()));
+ connect(m_pbFrame3, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFramebuttonClicked()));
+ connect(m_pbFrame4, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFramebuttonClicked()));
+ connect(this, TQ_SIGNAL(user1Clicked()),this, TQ_SLOT(slotResetClicked()));
if ( m_header )
{
- connect(m_cbAt, TQT_SIGNAL(clicked()),this, TQT_SLOT(slotSeparatorClicked()));
- connect(m_cbSep,TQT_SIGNAL(clicked()),this, TQT_SLOT(slotSeparatorClicked()));
+ connect(m_cbAt, TQ_SIGNAL(clicked()),this, TQ_SLOT(slotSeparatorClicked()));
+ connect(m_cbSep,TQ_SIGNAL(clicked()),this, TQ_SLOT(slotSeparatorClicked()));
}
TQWhatsThis::add(m_coHeader,i18n("Column or cell alignment."));
@@ -688,8 +688,8 @@ TabularTable::TabularTable(int numRows,int numCols,TQWidget* parent,TabularDialo
clearVerticalHeader(0,numRows);
// catch right mouse clicks in the table
- connect( this, TQT_SIGNAL(contextMenuRequested(int,int,const TQPoint &)),
- this, TQT_SLOT(slotContextMenuClicked(int,int,const TQPoint &)) );
+ connect( this, TQ_SIGNAL(contextMenuRequested(int,int,const TQPoint &)),
+ this, TQ_SLOT(slotContextMenuClicked(int,int,const TQPoint &)) );
// catch right mouse clicks in horizontal/vertical header
horizontalHeader()->installEventFilter(this);
@@ -1223,7 +1223,7 @@ void TabularTable::slotContextMenuClicked(int row,int col,const TQPoint &)
insertPopupAlign(m_cellpopup,false);
insertPopupClear(m_cellpopup);
- connect(m_cellpopup,TQT_SIGNAL(activated(int)),this,TQT_SLOT(slotCellPopupActivated(int)));
+ connect(m_cellpopup,TQ_SIGNAL(activated(int)),this,TQ_SLOT(slotCellPopupActivated(int)));
m_cellpopup->exec( TQCursor::pos() );
clearSelection();
}
@@ -1403,7 +1403,7 @@ void TabularTable::setupContextHeaderPopup(bool horizontal, int section)
insertPopupAlign(m_headerpopup,m_horizontal);
insertPopupClear(m_headerpopup);
- connect(m_headerpopup,TQT_SIGNAL(activated(int)),this,TQT_SLOT(slotHeaderPopupActivated(int)));
+ connect(m_headerpopup,TQ_SIGNAL(activated(int)),this,TQ_SLOT(slotHeaderPopupActivated(int)));
m_headerpopup->exec( TQCursor::pos() );
}
@@ -1918,10 +1918,10 @@ TabularDialog::TabularDialog(TQWidget *parent, TDEConfig *config, KileDocument::
resize(sizeHint().width(),sizeHint().height()+50);
// signals and slots
- connect( m_coEnvironment, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(slotEnvironmentChanged(const TQString &)));
- connect( m_spRows, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotRowValueChanged(int)));
- connect( m_spCols, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotColValueChanged(int)));
+ connect( m_coEnvironment, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(slotEnvironmentChanged(const TQString &)));
+ connect( m_spRows, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotRowValueChanged(int)));
+ connect( m_spCols, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotColValueChanged(int)));
TQWhatsThis::add(m_table,i18n("Input data. When you press Enter, the cursor will move to the cell right of the current cell. A click with the right mouse button on a cell or a range of cells will open a popup menu, where you can edit attributes, clear attributes, delete text or define multicolumn cells."));
TQWhatsThis::add(m_table->horizontalHeader(),i18n("Current layout of the preamble. A click with the right mouse button will open a popup menu, where you can edit some attributes of all cells, which belong to the selected columns."));