diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-10-22 04:10:08 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-10-22 04:10:08 +0200 |
commit | 45e95597267482ddb1023b33ebeeb50597d91508 (patch) | |
tree | 9aa9f0f24cef676f20539cd863d3b505b1b0b2ec /src/indexwidget.cpp | |
parent | aa733e149ff079df2c4d6a3dc6b2625b232697da (diff) | |
download | knmap-45e95597267482ddb1023b33ebeeb50597d91508.tar.gz knmap-45e95597267482ddb1023b33ebeeb50597d91508.zip |
Removed obsolete Qt2's ASSERT and replace with Q_ASSERT.
The definition of -UTQT_NO_COMPAT is no longer needed.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/indexwidget.cpp')
-rw-r--r-- | src/indexwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexwidget.cpp b/src/indexwidget.cpp index 18cfa7e..f8402e7 100644 --- a/src/indexwidget.cpp +++ b/src/indexwidget.cpp @@ -251,7 +251,7 @@ void IndexWidget::slotScanStarted( ) { if( m_scanCount++ ) return; - ASSERT( m_blinkTimer == NULL ); + Q_ASSERT( m_blinkTimer == NULL ); m_blinkTimer = new TQTimer( this ); connect( m_blinkTimer, SIGNAL( timeout( )), SLOT( slotRepaint( ))); m_blinkTimer->start( 500 ); |