summaryrefslogtreecommitdiffstats
path: root/kmail/filterimporterexporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/filterimporterexporter.h')
-rw-r--r--kmail/filterimporterexporter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/filterimporterexporter.h b/kmail/filterimporterexporter.h
index 72d29e978..c6386b42f 100644
--- a/kmail/filterimporterexporter.h
+++ b/kmail/filterimporterexporter.h
@@ -30,7 +30,7 @@
#ifndef __FILTERIMPORTEREXPORTER_H__
#define __FILTERIMPORTEREXPORTER_H__
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
class KMFilter;
class KConfig;
@@ -46,22 +46,22 @@ namespace KMail
class FilterImporterExporter
{
public:
- FilterImporterExporter( QWidget* parent, bool popFilter = false );
+ FilterImporterExporter( TQWidget* parent, bool popFilter = false );
virtual ~FilterImporterExporter();
/** Export the given filter rules to a file which
* is asked from the user. The list to export is also
* presented for confirmation/selection. */
- void exportFilters( const QValueList<KMFilter*> & );
+ void exportFilters( const TQValueList<KMFilter*> & );
/** Import filters. Ask the user where to import them from
* and which filters to import. */
- QValueList<KMFilter*> importFilters();
+ TQValueList<KMFilter*> importFilters();
- static void writeFiltersToConfig( const QValueList<KMFilter*>& filters, KConfig* config, bool bPopFilter );
- static QValueList<KMFilter*> readFiltersFromConfig( KConfig* config, bool bPopFilter );
+ static void writeFiltersToConfig( const TQValueList<KMFilter*>& filters, KConfig* config, bool bPopFilter );
+ static TQValueList<KMFilter*> readFiltersFromConfig( KConfig* config, bool bPopFilter );
private:
- QWidget* mParent;
+ TQWidget* mParent;
bool mPopFilter;
};