summaryrefslogtreecommitdiffstats
path: root/kmail/messageproperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/messageproperty.h')
-rw-r--r--kmail/messageproperty.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kmail/messageproperty.h b/kmail/messageproperty.h
index 91168e6f..0dd3f3b2 100644
--- a/kmail/messageproperty.h
+++ b/kmail/messageproperty.h
@@ -60,20 +60,20 @@ class MessageProperty : public QObject
public:
/** If the message is being filtered */
- static bool filtering( Q_UINT32 );
- static void setFiltering( Q_UINT32, bool filtering );
+ static bool filtering( TQ_UINT32 );
+ static void setFiltering( TQ_UINT32, bool filtering );
static bool filtering( const KMMsgBase* );
static void setFiltering( const KMMsgBase*, bool filtering );
/** The folder this message is to be moved into once
filtering is finished, or null if the message is not
scheduled to be moved */
- static KMFolder* filterFolder( Q_UINT32 );
- static void setFilterFolder( Q_UINT32, KMFolder* folder );
+ static KMFolder* filterFolder( TQ_UINT32 );
+ static void setFilterFolder( TQ_UINT32, KMFolder* folder );
static KMFolder* filterFolder( const KMMsgBase* );
static void setFilterFolder( const KMMsgBase*, KMFolder* folder );
/* Set the filterHandler for a message */
- static ActionScheduler* filterHandler( Q_UINT32 );
- static void setFilterHandler( Q_UINT32, ActionScheduler* filterHandler );
+ static ActionScheduler* filterHandler( TQ_UINT32 );
+ static void setFilterHandler( TQ_UINT32, ActionScheduler* filterHandler );
static ActionScheduler* filterHandler( const KMMsgBase* );
static void setFilterHandler( const KMMsgBase*, ActionScheduler* filterHandler );
@@ -81,16 +81,16 @@ public:
KMMsgBase based instance representing a message.
This property becomes invalid when the message is destructed or
assigned a new value */
- static void setSerialCache( const KMMsgBase*, Q_UINT32 );
- static Q_UINT32 serialCache( const KMMsgBase* );
+ static void setSerialCache( const KMMsgBase*, TQ_UINT32 );
+ static TQ_UINT32 serialCache( const KMMsgBase* );
/* Set the transferInProgress for a message
This property becomes invalid when the message is destructed or
assigned a new value */
static void setTransferInProgress( const KMMsgBase*, bool, bool = false );
static bool transferInProgress( const KMMsgBase* );
- static void setTransferInProgress( Q_UINT32, bool, bool = false );
- static bool transferInProgress( Q_UINT32 );
+ static void setTransferInProgress( TQ_UINT32, bool, bool = false );
+ static bool transferInProgress( TQ_UINT32 );
/** Some properties, namely complete, transferInProgress, and
serialCache must be forgotten when a message class instance is
@@ -99,13 +99,13 @@ public:
private:
// The folder a message is to be moved into once filtering is finished if any
- static TQMap<Q_UINT32, TQGuardedPtr<KMFolder> > sFolders;
+ static TQMap<TQ_UINT32, TQGuardedPtr<KMFolder> > sFolders;
// The action scheduler currently processing a message if any
- static TQMap<Q_UINT32, TQGuardedPtr<ActionScheduler> > sHandlers;
+ static TQMap<TQ_UINT32, TQGuardedPtr<ActionScheduler> > sHandlers;
// The transferInProgres state of a message if any.
- static TQMap<Q_UINT32, int > sTransfers;
+ static TQMap<TQ_UINT32, int > sTransfers;
// The cached serial number of a message if any.
static TQMap<const KMMsgBase*, long > sSerialCache;