summaryrefslogtreecommitdiffstats
path: root/kmail/klistboxdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/klistboxdialog.h')
-rw-r--r--kmail/klistboxdialog.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/kmail/klistboxdialog.h b/kmail/klistboxdialog.h
deleted file mode 100644
index 30a672860..000000000
--- a/kmail/klistboxdialog.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef KLISTBOXDIALOG_H
-#define KLISTBOXDIALOG_H
-
-#include <kdialogbase.h>
-
-class TQLabel;
-class TQListBox;
-
-class TDEListBoxDialog : public KDialogBase
-{
- Q_OBJECT
-
-
-public:
- TDEListBoxDialog( TQString& _selectedString,
- const TQString& caption,
- const TQString& labelText,
- TQWidget* parent = 0,
- const char* name = 0,
- bool modal = true );
- ~TDEListBoxDialog();
-
- void setLabelAbove( const TQString& label );
- void setCommentBelow(const TQString& comment);
-
- TQListBox* entriesLB;
-
-private slots:
- void highlighted( const TQString& );
-
-protected:
- TQString& selectedString;
- TQLabel* labelAboveLA;
- TQLabel* commentBelowLA;
-};
-
-#endif