summaryrefslogtreecommitdiffstats
path: root/libkcal/attachmenthandler.h
diff options
context:
space:
mode:
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 5bbeef46..6116f15a 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 tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, Incidence *incidence );
+ Attachment *find( TQWidget *parent, 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 tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, ScheduleMessage *message );
+ Attachment *find( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
/**
Finds the attachment in the user's calendar, by @p attachmentName and @p uid.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, const TQString &uid );
+ Attachment *find( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
/**
Launches a viewer on the specified attachment.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, Attachment *attachment );
+ bool view( TQWidget *parent, Attachment *attachment );
/**
Launches a viewer on the specified attachment.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, Incidence *incidence );
+ bool view( TQWidget *parent, const TQString &attachmentName, Incidence *incidence );
/**
Launches a viewer on the specified attachment.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, const TQString &uid );
+ bool view( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
/**
Launches a viewer on the specified attachment.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, ScheduleMessage *message );
+ bool view( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
/**
Saves the specified attachment to a file of the user's choice.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, Attachment *attachment );
+ bool saveAs( TQWidget *parent, Attachment *attachment );
/**
Saves the specified attachment to a file of the user's choice.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, Incidence *incidence );
+ bool saveAs( TQWidget *parent, const TQString &attachmentName, Incidence *incidence );
/**
Saves the specified attachment to a file of the user's choice.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, const TQString &uid );
+ bool saveAs( TQWidget *parent, const TQString &attachmentName, const TQString &uid );
/**
Saves the specified attachment to a file of the user's choice.
- @param tqparent is the tqparent widget for the dialogs used in this function.
+ @param parent is the parent 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 *tqparent, const TQString &attachmentName, ScheduleMessage *message );
+ bool saveAs( TQWidget *parent, const TQString &attachmentName, ScheduleMessage *message );
}
}