summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/tableeditorimpl.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 02:33:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 02:33:14 +0900
commit676a13490dc7163e5c99a0f39094a2a4148d3963 (patch)
tree2eff206a80899e040b1c6221e0c4fdcb9b38d237 /kdevdesigner/designer/tableeditorimpl.cpp
parentaefcba8280fc1520675866143baf2f8c020ec82e (diff)
downloadtdevelop-676a13490dc7163e5c99a0f39094a2a4148d3963.tar.gz
tdevelop-676a13490dc7163e5c99a0f39094a2a4148d3963.zip
Replaced various '#define' with actual strings - part 4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdevdesigner/designer/tableeditorimpl.cpp')
-rw-r--r--kdevdesigner/designer/tableeditorimpl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/designer/tableeditorimpl.cpp b/kdevdesigner/designer/tableeditorimpl.cpp
index 060611f6..1bde6758 100644
--- a/kdevdesigner/designer/tableeditorimpl.cpp
+++ b/kdevdesigner/designer/tableeditorimpl.cpp
@@ -59,7 +59,7 @@ TableEditor::TableEditor( TQWidget* parent, TQWidget *editWidget, FormWindow *f
labelRowPixmap->setText( "" );
#ifndef TQT_NO_SQL
- if ( !::tqqt_cast<TQDataTable*>(editTable) )
+ if ( !::tqt_cast<TQDataTable*>(editTable) )
#endif
{
labelFields->hide();
@@ -68,7 +68,7 @@ TableEditor::TableEditor( TQWidget* parent, TQWidget *editWidget, FormWindow *f
labelTableValue->hide();
}
#ifndef TQT_NO_SQL
- if ( ::tqqt_cast<TQDataTable*>(editTable) ) {
+ if ( ::tqt_cast<TQDataTable*>(editTable) ) {
// ## why does this behave weird?
// TabWidget->removePage( rows_tab );
// rows_tab->hide();
@@ -76,7 +76,7 @@ TableEditor::TableEditor( TQWidget* parent, TQWidget *editWidget, FormWindow *f
TabWidget->setTabEnabled( rows_tab, FALSE );
}
- if ( formWindow->project() && ::tqqt_cast<TQDataTable*>(editTable) ) {
+ if ( formWindow->project() && ::tqt_cast<TQDataTable*>(editTable) ) {
TQStringList lst = MetaDataBase::fakeProperty( TQT_TQOBJECT(editTable), "database" ).toStringList();
if ( lst.count() == 2 && !lst[ 0 ].isEmpty() && !lst[ 1 ].isEmpty() ) {
TQStringList fields;
@@ -159,7 +159,7 @@ void TableEditor::currentColumnChanged( TQListBoxItem *i )
editColumnText->blockSignals( FALSE );
#ifndef TQT_NO_SQL
- if ( ::tqqt_cast<TQDataTable*>(editTable) ) {
+ if ( ::tqt_cast<TQDataTable*>(editTable) ) {
TQString s = *fieldMap.find( listColumns->index( i ) );
if ( s.isEmpty() )
comboFields->setCurrentItem( 0 );
@@ -244,7 +244,7 @@ void TableEditor::newColumnClicked()
listColumns->setCurrentItem( item );
listColumns->setSelected( item, TRUE );
#ifndef TQT_NO_SQL
- if ( ::tqqt_cast<TQDataTable*>(editTable) ) {
+ if ( ::tqt_cast<TQDataTable*>(editTable) ) {
comboFields->setFocus();
} else
#endif