diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:34:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:34:47 +0900 |
commit | 8dac8f1a52cf3a2983af451aff69ca268cfbd6d7 (patch) | |
tree | 0e635c9ea1f00598fe892d77e026cbeb96eff8ef /cervisia | |
parent | 3523578cf170d9e98e2c0c5b2f3b6f7de4318a03 (diff) | |
download | tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.tar.gz tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'cervisia')
-rw-r--r-- | cervisia/qttableview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cervisia/qttableview.cpp b/cervisia/qttableview.cpp index 43c82cf2..02f8aea1 100644 --- a/cervisia/qttableview.cpp +++ b/cervisia/qttableview.cpp @@ -1390,7 +1390,7 @@ void QtTableView::paintEvent( TQPaintEvent *e ) TQRect r = viewR; r.setLeft( xPos ); r.setBottom( yPos<maxY?yPos:maxY ); - if ( inherits( TQMULTILINEEDIT_OBJECT_NAME_STRING ) ) + if ( inherits( "TQMultiLineEdit" ) ) paint.fillRect( r.intersect( updateR ), g.base() ); else paint.eraseRect( r.intersect( updateR ) ); @@ -1398,7 +1398,7 @@ void QtTableView::paintEvent( TQPaintEvent *e ) if ( yPos <= maxY ) { TQRect r = viewR; r.setTop( yPos ); - if ( inherits( TQMULTILINEEDIT_OBJECT_NAME_STRING ) ) + if ( inherits( "TQMultiLineEdit" ) ) paint.fillRect( r.intersect( updateR ), g.base() ); else paint.eraseRect( r.intersect( updateR ) ); |