diff options
Diffstat (limited to 'src/blacklisteditdialog.h')
-rw-r--r-- | src/blacklisteditdialog.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/blacklisteditdialog.h b/src/blacklisteditdialog.h index adbf559..57b2d4b 100644 --- a/src/blacklisteditdialog.h +++ b/src/blacklisteditdialog.h @@ -37,23 +37,24 @@ class blacklistEditDialog: public blacklistedit_Dialog { Q_OBJECT + TQ_OBJECT public: //! default constructor - blacklistEditDialog(QStringList blacklisted, QString captionName, bool initImport = false, - QWidget *parent = 0, const char *name = 0); + blacklistEditDialog(TQStringList blacklisted, TQString captionName, bool initImport = false, + TQWidget *tqparent = 0, const char *name = 0); //! default destructor ~blacklistEditDialog(); private: - //! QStringList with the blacklisted processes + //! TQStringList with the blacklisted processes /*! - * This QStringList contains the given blacklisted processes + * This TQStringList contains the given blacklisted processes * for edit. If the dialog changed, we change also this list. */ - QStringList blacklist; + TQStringList blacklist; //! to tell if the blacklist was changed /*! @@ -76,7 +77,7 @@ private slots: void pB_add_released(); //! called if a item of the listbox selected void lB_blacklist_currentChanged(); - //! called if something input in the QLineEdit + //! called if something input in the TQLineEdit void lE_blacklist_textChanged(); signals: @@ -85,9 +86,9 @@ signals: /*! * This signal is emited if the configuration is finished * and the blacklist was modified- - * \return QStringList (the modified blacklist) + * \return TQStringList (the modified blacklist) */ - void config_finished( QStringList ); + void config_finished( TQStringList ); }; |