summaryrefslogtreecommitdiffstats
path: root/libkcal/attachmenthandler.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /libkcal/attachmenthandler.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/attachmenthandler.h')
-rw-r--r--libkcal/attachmenthandler.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/libkcal/attachmenthandler.h b/libkcal/attachmenthandler.h
index 6116f15a..7fc97382 100644
--- a/libkcal/attachmenthandler.h
+++ b/libkcal/attachmenthandler.h
@@ -49,128 +49,128 @@ namespace AttachmentHandler {
/**
Finds the attachment in the user's calendar, by @p attachmentName and @p incidence.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param incidence is a pointer to a valid Incidence object containing the attachment.
@return a pointer to the Attachment object located; 0 if no such attachment could be found.
*/
- Attachment *find( TQWidget *parent, const TQString &attachmentName, Incidence *incidence );
+ Attachment *tqfind( TQWidget *tqparent, const TQString &attachmentName, Incidence *incidence );
/**
Finds the attachment in the user's calendar, by @p attachmentName and a scheduler message;
in other words, this function is intended to retrieve attachments from calendar invitations.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param message is a pointer to a valid ScheduleMessage object containing the attachment.
@return a pointer to the Attachment object located; 0 if no such attachment could be found.
*/
- Attachment *find( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
+ Attachment *tqfind( TQWidget *tqparent, const TQString &attachmentName, ScheduleMessage *message );
/**
Finds the attachment in the user's calendar, by @p attachmentName and @p uid.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param uid is a TQString containing a UID of the incidence containing the attachment.
@return a pointer to the Attachment object located; 0 if no such attachment could be found.
*/
- Attachment *find( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
+ Attachment *tqfind( TQWidget *tqparent, const TQString &attachmentName, const TQString &uid );
/**
Launches a viewer on the specified attachment.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachment is a pointer to a valid Attachment object.
@return true if the viewer program successfully launched; false otherwise.
*/
- bool view( TQWidget *parent, Attachment *attachment );
+ bool view( TQWidget *tqparent, Attachment *attachment );
/**
Launches a viewer on the specified attachment.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param incidence is a pointer to a valid Incidence object containing the attachment.
@return true if the attachment could be found and the viewer program successfully launched;
false otherwise.
*/
- bool view( TQWidget *parent, const TQString &attachmentName, Incidence *incidence );
+ bool view( TQWidget *tqparent, const TQString &attachmentName, Incidence *incidence );
/**
Launches a viewer on the specified attachment.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param uid is a TQString containing a UID of the incidence containing the attachment.
@return true if the attachment could be found and the viewer program successfully launched;
false otherwise.
*/
- bool view( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
+ bool view( TQWidget *tqparent, const TQString &attachmentName, const TQString &uid );
/**
Launches a viewer on the specified attachment.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param message is a pointer to a valid ScheduleMessage object containing the attachment.
@return true if the attachment could be found and the viewer program successfully launched;
false otherwise.
*/
- bool view( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
+ bool view( TQWidget *tqparent, const TQString &attachmentName, ScheduleMessage *message );
/**
Saves the specified attachment to a file of the user's choice.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachment is a pointer to a valid Attachment object.
@return true if the save operation was successful; false otherwise.
*/
- bool saveAs( TQWidget *parent, Attachment *attachment );
+ bool saveAs( TQWidget *tqparent, Attachment *attachment );
/**
Saves the specified attachment to a file of the user's choice.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param incidence is a pointer to a valid Incidence object containing the attachment.
@return true if the attachment could be found and the save operation was successful;
false otherwise.
*/
- bool saveAs( TQWidget *parent, const TQString &attachmentName, Incidence *incidence );
+ bool saveAs( TQWidget *tqparent, const TQString &attachmentName, Incidence *incidence );
/**
Saves the specified attachment to a file of the user's choice.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param uid is a TQString containing a UID of the incidence containing the attachment.
@return true if the attachment could be found and the save operation was successful;
false otherwise.
*/
- bool saveAs( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
+ bool saveAs( TQWidget *tqparent, const TQString &attachmentName, const TQString &uid );
/**
Saves the specified attachment to a file of the user's choice.
- @param parent is the parent widget for the dialogs used in this function.
+ @param tqparent is the tqparent widget for the dialogs used in this function.
@param attachmentName is the name of the attachment
@param message is a pointer to a valid ScheduleMessage object containing the attachment.
@return true if the attachment could be found and the save operation was successful;
false otherwise.
*/
- bool saveAs( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
+ bool saveAs( TQWidget *tqparent, const TQString &attachmentName, ScheduleMessage *message );
}
}