summaryrefslogtreecommitdiffstats
path: root/src/profiledialog.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-10-22 04:10:08 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-10-22 18:42:36 +0200
commit83fb5c2a160acd743fe6beab0dca68a5ad8faf21 (patch)
treec150bd4d9daeaa099a9bb472c1484b2c3b81a6e9 /src/profiledialog.cpp
parenta83f600010c3c5d097c64ff3847ff59f2b2eaf7e (diff)
downloadknmap-83fb5c2a160acd743fe6beab0dca68a5ad8faf21.tar.gz
knmap-83fb5c2a160acd743fe6beab0dca68a5ad8faf21.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> (cherry picked from commit 45e95597267482ddb1023b33ebeeb50597d91508)
Diffstat (limited to 'src/profiledialog.cpp')
-rw-r--r--src/profiledialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profiledialog.cpp b/src/profiledialog.cpp
index 2842c6d..5d5b3d2 100644
--- a/src/profiledialog.cpp
+++ b/src/profiledialog.cpp
@@ -136,12 +136,12 @@ void ProfileDialog::createlayout( )
void ProfileDialog::deelete( const TQString& profileName, const bool ask )
{ if( !kapp->config( )->hasGroup( PROFILE_PREFIX + profileName ))
- { ASSERT( false );
+ { Q_ASSERT( false );
return ;
}
TQListBoxItem* item = m_profileListBox->findItem( profileName, TQt::ExactMatch );
- ASSERT( item != NULL );
+ Q_ASSERT( item != NULL );
if( item != NULL )
deelete( item, ask );