summaryrefslogtreecommitdiffstats
path: root/libkcal/calfilter.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /libkcal/calfilter.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/calfilter.h')
-rw-r--r--libkcal/calfilter.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/libkcal/calfilter.h b/libkcal/calfilter.h
index fb34454e..80c0b2af 100644
--- a/libkcal/calfilter.h
+++ b/libkcal/calfilter.h
@@ -22,8 +22,8 @@
#ifndef KCAL_CALFILTER_H
#define KCAL_CALFILTER_H
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
#include "event.h"
#include "todo.h"
@@ -41,18 +41,18 @@ class LIBKCAL_EXPORT CalFilter
/** Construct filter. */
CalFilter();
/** Construct filter with name */
- CalFilter( const QString &name );
+ CalFilter( const TQString &name );
/** Destruct filter. */
~CalFilter();
/**
Set name of filter.
*/
- void setName( const QString &name ) { mName = name; }
+ void setName( const TQString &name ) { mName = name; }
/**
Return name of filter.
*/
- QString name() const { return mName; }
+ TQString name() const { return mName; }
/**
Apply filter to eventlist, all events not matching filter criterias are
@@ -93,26 +93,26 @@ class LIBKCAL_EXPORT CalFilter
events.
See related functions.
*/
- void setCategoryList( const QStringList & );
+ void setCategoryList( const TQStringList & );
/**
Return category list, used for showing/hiding categories of events.
See related functions.
*/
- QStringList categoryList() const;
+ TQStringList categoryList() const;
/**
Set list of email addresses which are to be considered when finding
incidences which the current user is not a participant of. This is
normally the list used by KOPrefs::thatIsMe() as well.
*/
- void setEmailList( const QStringList & );
+ void setEmailList( const TQStringList & );
/**
Return list of email addresses which are to be considered when finding
incidences which the current user is not a participant of. This is
normally the list used by KOPrefs::thatIsMe() as well.
See related functions.
*/
- QStringList emailList() const;
+ TQStringList emailList() const;
enum { HideRecurring = 1, HideCompleted = 2, ShowCategories = 4,
HideInactiveTodos = 8, HideTodosWithoutAttendeeInEmailList = 16 };
@@ -139,14 +139,14 @@ class LIBKCAL_EXPORT CalFilter
int completedTimeSpan() const;
private:
- QString mName;
+ TQString mName;
int mCriteria;
bool mEnabled;
- QStringList mCategoryList;
- QStringList mEmailList;
+ TQStringList mCategoryList;
+ TQStringList mEmailList;
int mCompletedTimeSpan;
class Private;