diff options
Diffstat (limited to 'src/paranoia.ui.h')
-rw-r--r-- | src/paranoia.ui.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/paranoia.ui.h b/src/paranoia.ui.h index 325f8de..308b8bc 100644 --- a/src/paranoia.ui.h +++ b/src/paranoia.ui.h @@ -97,8 +97,8 @@ void FilterTable::FilterRules_contextMenuRequested( TQListViewItem *, const TQPo TQPopupMenu *menu = new TQPopupMenu( FilterRules ); menu->clear(); - menu->insertItem( "Delete Entry", this,SLOT(slotDeleteEntry()) ); - menu->insertItem( "Toggle Entry", this,SLOT(slotToggleEntry()) ); + menu->insertItem( "Delete Entry", this,TQ_SLOT(slotDeleteEntry()) ); + menu->insertItem( "Toggle Entry", this,TQ_SLOT(slotToggleEntry()) ); menu->popup( point ); @@ -110,8 +110,8 @@ void FilterTable::SystemFilterRules_contextMenuRequested( TQListViewItem *, cons TQPopupMenu *menu = new TQPopupMenu( SystemFilterRules ); menu->clear(); - menu->insertItem( "Delete Entry", this,SLOT(slotDeleteSystemEntry()) ); - menu->insertItem( "Toggle Entry", this,SLOT(slotToggleSystemEntry()) ); + menu->insertItem( "Delete Entry", this,TQ_SLOT(slotDeleteSystemEntry()) ); + menu->insertItem( "Toggle Entry", this,TQ_SLOT(slotToggleSystemEntry()) ); menu->popup( point ); |