diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /libkcal/attachmenthandler.h | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/attachmenthandler.h')
-rw-r--r-- | libkcal/attachmenthandler.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/libkcal/attachmenthandler.h b/libkcal/attachmenthandler.h index 5bbeef46c..6116f15ad 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 ); } } |