From 38c77650564a23ddaaceddb984fc05b2b5544f1f Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Sat, 11 Aug 2007 20:58:37 +0000 Subject: [PATCH] Apidox - remove invalid old parameters. svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=699032 --- keduvocdocument/keduvoctranslation.h | 57 +++------------------------- 1 file changed, 6 insertions(+), 51 deletions(-) diff --git a/keduvocdocument/keduvoctranslation.h b/keduvocdocument/keduvoctranslation.h index 7dcf32d..eb574df 100644 --- a/keduvocdocument/keduvoctranslation.h +++ b/keduvocdocument/keduvoctranslation.h @@ -39,13 +39,13 @@ public: * Default constructor for an empty translation. */ KEduVocTranslation( ); - + /** * Constructor * @param translation is used as translation */ KEduVocTranslation( const QString &translation ); - + /** copy constructor for d-pointer safet */ KEduVocTranslation( const KEduVocTranslation &other); @@ -67,115 +67,84 @@ public: /** sets the pronunciation of this expression - * - * @param index index of expression * @param expression pronunciation of this index */ void setPronunciation( const QString & expression); /** returns the pronunciation of this expression - * - * @param index index of expression * @return pronunciation or "" if none available */ QString pronunciation() const; /** returns comments of this expression - * - * @param index index of expression * @return comment or "" if no comment available */ QString comment() const; /** sets comment of this expression - * - * @param index index of expression * @param expr comment of this index */ void setComment( const QString & expr); /** sets false friend of this expression - * - * @param index index of expression * @param indexint indexFrom index of original translation * @param expression false friend of this index */ void setFalseFriend( int indexFrom, const QString & expression ); - /** returns false friend of this expression - * - * @param index index of expression - - * @return false friend or "" if no string available + /** + * returns false friend of this expression + * @param indexFrom index of original translation + * @return false friend or "" if no string available */ QString falseFriend( int indexFrom) const; /** sets synonym this expression - * - * @param index index of expression * @param expression synonym of this index */ void setSynonym( const QString & expression); /** returns synonym of this expression - * - * @param index index of expression * @return synonym or "" if no string available */ QString synonym() const; /** sets example this expression - * - * @param index index of expression * @param expression example of this index */ void setExample( const QString & expression); /** returns example of this expression - * - * @param index index of expression * @return example or "" if no string available */ QString example() const; /** sets usage label this expression - * - * @param index index of expression * @param usage usage label of this index */ void setUsageLabel( const QString & usage); /** returns usage label of this expression - * - * @param index index of expression * @return usage or "" if no string available */ QString usageLabel() const; /** sets paraphrase of this expression - * - * @param index index of expression * @param expression paraphrase of this index */ void setParaphrase( const QString & expression); /** returns paraphrase of this expression - * - * @param index index of expression * @return paraphrase or "" if no string available */ QString paraphrase() const; /** sets antonym this expression - * - * @param index index of expression * @param expression antonym of this index */ void setAntonym( const QString & expression); /** returns antonym of this expression - * - * @param index index of expression * @return antonym or "" if no string available */ QString antonym() const; @@ -187,8 +156,6 @@ public: QString type() const; /** sets type of this expression - * - * @param index index of type * @param type type of this expression ("" = none) */ void setType( const QString &type); @@ -199,40 +166,28 @@ public: /** returns conjugations if available - * - * @param index index of translation */ KEduVocConjugation conjugation() const; /** sets conjugations - * - * @param index index of translation * @param conjugation conjugation block */ void setConjugation(const KEduVocConjugation & conjugation); /** returns comparison if available - * - * @param index index of translation */ KEduVocComparison comparison() const; /** sets comparison - * - * @param index index of translation * @param comparison comparison block */ void setComparison( const KEduVocComparison & comparison); /** returns multiple choice if available - * - * @param index index of multiple choice */ KEduVocMultipleChoice multipleChoice() const; /** sets multiple choice - * - * @param index index of translation * @param mc multiple choice block */ void setMultipleChoice( const KEduVocMultipleChoice &mc); -- 2.47.3