]> Git trees. - libqmvoc.git/commitdiff
spell checking
authorPino Toscano <pino@kde.org>
Tue, 9 May 2006 20:57:04 +0000 (20:57 +0000)
committerPino Toscano <pino@kde.org>
Tue, 9 May 2006 20:57:04 +0000 (20:57 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=539160

kdeeducore/keduvocdocument.h
kdeeducore/prefleitner.h
libscience/isotope.h
libscience/moleculeparser.h

index 5435630824d77d6f380ea9be5319a013203325fa..78752e91016d85a8c914f01fa2a2dd3178d92cfb 100644 (file)
@@ -58,7 +58,7 @@ static const QLatin1String KV_TRANS("t");       // translated expression in spec
 #define KV_FAUX_AMI_T  "tf"        // false friend of this entry to org
 #define KV_SYNONYM     "y"         // synonym (same meaning) of expr
 #define KV_ANTONYM     "a"         // antonym (oppositite) of expr
-#define KV_PRONUNCE    "p"         // how to pronunce this expression
+#define KV_PRONUNCE    "p"         // how to pronounce this expression
 #define KV_SELECTED    "s"         // entry selected for queries
 #define KV_INACTIVE    "i"         // entry inactive (for queries)
 #define KV_EXPRTYPE    "t"         // type of expression
@@ -545,7 +545,7 @@ class EDUCORE_EXPORT KEduVocDocument : public QObject
   /**
    * Returns pointer to expression object @p index
    *
-   * @param index     index of desidered entry
+   * @param index     index of desired entry
    * @returns         pointer to object or NULL if index out of range
    */
   KEduVocExpression *entry(int index);
index 7182c781d9f47bd2f6e0c0fbefe7d09c61d63527..f8792ddd9bdeaf9c96bb3bd5a952f04cfa1cb58c 100644 (file)
@@ -30,7 +30,7 @@ class LeitnerSystem;
 class LeitnerBox;
 
 /**
- * This class is a dialogue for configuring a LeitnerSystem
+ * This class is a dialog for configuring a LeitnerSystem
  * @author Martin Pfeiffer <hubipete@gmx.net>
  */
 class EDUCORE_EXPORT PrefLeitner : public QDialog, public Ui::PrefLeitnerBase
@@ -52,13 +52,13 @@ public:
        PrefLeitner( QWidget* parent = 0 , LeitnerSystem* system = 0 );
 
        /**
-        * Sets the LeitnerSystem for the dialogue
+        * Sets the LeitnerSystem for the dialog
         * @param system a pointer to the LeitnerSystem to configure
         */
        void setLeitnerSystem( LeitnerSystem* system );
 
        /**
-        * Get the LeitnerSystem that is set to the dialogue
+        * Get the LeitnerSystem that is set to the dialog
         * @return a pointer to the actual set LeitnerSystem
         */
        LeitnerSystem* system();
index 228e40d35ba4c5d6fc10a598907c87b04de505eb..fae41baab80945f8441d246a7940ad4a017dbe40 100644 (file)
@@ -152,7 +152,7 @@ class EDUSCIENCE_EXPORT Isotope
                ChemicalDataObject* m_parentElementSymbol;
                
                /**
-                * stores the infomation about the mass of the Isotope
+                * stores the information about the mass of the Isotope
                 */
                ChemicalDataObject* m_mass;
 
index 5a857736ba496577a8134a484beca6ff203a6175..08a11f3260a15d51461560728d6b1d6846df6fe6 100644 (file)
@@ -56,12 +56,12 @@ class ElementCount
                Element *element() const    { return m_element;   }
 
                /**
-                * @return the number of occurences of the Element
+                * @return the number of occurrences of the Element
                 */
                int   count()  const        { return m_count;     }
                
                /**
-                * Add @p _count occurences of the Element
+                * Add @p _count occurrences of the Element
                 * @param _count The number of times the Element occurs
                 */
                void  add(int _count)       { m_count += _count;  }
@@ -73,7 +73,7 @@ class ElementCount
                Element  *m_element;
 
                /**
-                * The number of occurences
+                * The number of occurrences
                 */
                int       m_count;
 };