summaryrefslogtreecommitdiffstats
path: root/korganizer/korganizeriface.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 /korganizer/korganizeriface.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 'korganizer/korganizeriface.h')
-rw-r--r--korganizer/korganizeriface.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/korganizer/korganizeriface.h b/korganizer/korganizeriface.h
index 5a8c7bde..b3be3c64 100644
--- a/korganizer/korganizeriface.h
+++ b/korganizer/korganizeriface.h
@@ -27,22 +27,22 @@ class KOrganizerIface : virtual public DCOPObject
{
K_DCOP
k_dcop:
- virtual bool openURL(const QString &url) = 0;
- virtual bool mergeURL(const QString &url) = 0;
+ virtual bool openURL(const TQString &url) = 0;
+ virtual bool mergeURL(const TQString &url) = 0;
virtual void closeURL() = 0;
virtual bool saveURL() = 0;
virtual bool canQueryClose() = 0;
- virtual bool saveAsURL(const QString &url) = 0;
- virtual QString getCurrentURLasString() const = 0;
- virtual bool editIncidence(const QString &uid) = 0;
- virtual bool deleteIncidence(const QString &uid) = 0;
+ virtual bool saveAsURL(const TQString &url) = 0;
+ virtual TQString getCurrentURLasString() const = 0;
+ virtual bool editIncidence(const TQString &uid) = 0;
+ virtual bool deleteIncidence(const TQString &uid) = 0;
/**
Delete the incidence with the given unique ID from the active calendar.
@param uid The incidence's unique ID.
@param force If true, all recurrences and sub-todos (if applicable) will
be deleted without prompting for confirmation.
*/
- virtual bool deleteIncidence(const QString &uid, bool force) = 0;
+ virtual bool deleteIncidence(const TQString &uid, bool force) = 0;
/**
Add an incidence to the active calendar.
@param iCal A calendar in iCalendar format containing the incidence. The
@@ -51,10 +51,10 @@ class KOrganizerIface : virtual public DCOPObject
optionally a VTIMEZONE component. If there is more than one
incidence, only the first is added to KOrganizer's calendar.
*/
- virtual bool addIncidence(const QString &iCal) = 0;
+ virtual bool addIncidence(const TQString &iCal) = 0;
- virtual void loadProfile( const QString& path ) = 0;
- virtual void saveToProfile( const QString& path ) const = 0;
+ virtual void loadProfile( const TQString& path ) = 0;
+ virtual void saveToProfile( const TQString& path ) const = 0;
};
#endif