diff options
Diffstat (limited to 'konversation/src/quickbuttons_preferences.cpp')
-rw-r--r-- | konversation/src/quickbuttons_preferences.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/konversation/src/quickbuttons_preferences.cpp b/konversation/src/quickbuttons_preferences.cpp index 75d5ec5..8ce1eaa 100644 --- a/konversation/src/quickbuttons_preferences.cpp +++ b/konversation/src/quickbuttons_preferences.cpp @@ -38,15 +38,15 @@ QuickButtons_Config::QuickButtons_Config(TQWidget* parent, const char* name) buttonListView->setSorting(-1,false); buttonListView->header()->setMovingEnabled(false); - connect(buttonListView,TQT_SIGNAL (selectionChanged(TQListViewItem*)),this,TQT_SLOT (entrySelected(TQListViewItem*)) ); - connect(buttonListView,TQT_SIGNAL (clicked(TQListViewItem*)),this,TQT_SLOT (entrySelected(TQListViewItem*)) ); - connect(buttonListView,TQT_SIGNAL (moved()),this,TQT_SIGNAL (modified()) ); + connect(buttonListView,TQ_SIGNAL (selectionChanged(TQListViewItem*)),this,TQ_SLOT (entrySelected(TQListViewItem*)) ); + connect(buttonListView,TQ_SIGNAL (clicked(TQListViewItem*)),this,TQ_SLOT (entrySelected(TQListViewItem*)) ); + connect(buttonListView,TQ_SIGNAL (moved()),this,TQ_SIGNAL (modified()) ); - connect(nameInput,TQT_SIGNAL (textChanged(const TQString&)),this,TQT_SLOT (nameChanged(const TQString&)) ); - connect(actionInput,TQT_SIGNAL (textChanged(const TQString&)),this,TQT_SLOT (actionChanged(const TQString&)) ); + connect(nameInput,TQ_SIGNAL (textChanged(const TQString&)),this,TQ_SLOT (nameChanged(const TQString&)) ); + connect(actionInput,TQ_SIGNAL (textChanged(const TQString&)),this,TQ_SLOT (actionChanged(const TQString&)) ); - connect(newButton,TQT_SIGNAL (clicked()),this,TQT_SLOT (addEntry())); - connect(removeButton,TQT_SIGNAL (clicked()),this,TQT_SLOT (removeEntry())); + connect(newButton,TQ_SIGNAL (clicked()),this,TQ_SLOT (addEntry())); + connect(removeButton,TQ_SIGNAL (clicked()),this,TQ_SLOT (removeEntry())); } QuickButtons_Config::~QuickButtons_Config() |