diff options
Diffstat (limited to 'src/profiledialog.cpp')
-rw-r--r-- | src/profiledialog.cpp | 4 |
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 ); |