summaryrefslogtreecommitdiffstats
path: root/src/blacklisteditdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/blacklisteditdialog.cpp')
-rw-r--r--src/blacklisteditdialog.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/blacklisteditdialog.cpp b/src/blacklisteditdialog.cpp
index 85526f5..f9638f8 100644
--- a/src/blacklisteditdialog.cpp
+++ b/src/blacklisteditdialog.cpp
@@ -24,6 +24,10 @@
* \date 2005
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
// own header
#include "blacklisteditdialog.h"
@@ -31,7 +35,7 @@
#include <tdelocale.h>
#include <kiconloader.h>
-// QT headers:
+// TQt headers:
#include <tqbuttongroup.h>
#include <tqdialog.h>
#include <tqlabel.h>
@@ -76,7 +80,7 @@ blacklistEditDialog::~blacklistEditDialog()
}
/*!
- * SLOT: called if the 'ok' button clicked. This TQT_SLOT emit
+ * Slot called if the 'ok' button clicked. This slot emit
* \ref config_finished() and close the dialog.
*/
void blacklistEditDialog::buttonOk_released() {
@@ -90,7 +94,7 @@ void blacklistEditDialog::buttonOk_released() {
/*!
- * SLOT: called if the 'cancel' button clicked. This TQT_SLOT close
+ * Slot called if the 'cancel' button clicked. This slot close
* the dialog.
*/
void blacklistEditDialog::buttonCancel_released(){
@@ -100,7 +104,7 @@ void blacklistEditDialog::buttonCancel_released(){
/*!
- * SLOT: called if the 'remove' button clicked. The TQT_SLOT try to remove
+ * Slot called if the 'remove' button clicked. The slot try to remove
* the selected item from the TQListBox and the TQStringList \ref blacklist .
*/
void blacklistEditDialog::pB_remove_released(){
@@ -120,8 +124,8 @@ void blacklistEditDialog::pB_remove_released(){
/*!
- * SLOT: called if the 'add' button clicked. The TQT_SLOT try to add the string from
- * the TQLineEdit lE_blacklist to the TQListBox and the TQStringList \ref blacklist .
+ * Slot called if the 'add' button clicked. The slot try to add the string from
+ * the TQLineEdit lE_blacklist to the TQListBox and the TQStringList \ref blacklist.
*/
void blacklistEditDialog::pB_add_released(){
@@ -151,7 +155,7 @@ void blacklistEditDialog::pB_add_released(){
/*!
- * SLOT: called if a item in the TQListBox lB_blacklist is selected.
+ * Slot called if a item in the TQListBox lB_blacklist is selected.
* Here we enable the remove button pB_remove .
*/
void blacklistEditDialog::lB_blacklist_currentChanged(){
@@ -161,7 +165,7 @@ void blacklistEditDialog::lB_blacklist_currentChanged(){
/*!
- * SLOT: called if the input-line in the dialog is modified. Here we enable
+ * Slot called if the input-line in the dialog is modified. Here we enable
* the add button pB_add .
*/
void blacklistEditDialog::lE_blacklist_textChanged(){