#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
/**
* 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);
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
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();
ChemicalDataObject* m_parentElementSymbol;
/**
- * stores the infomation about the mass of the Isotope
+ * stores the information about the mass of the Isotope
*/
ChemicalDataObject* m_mass;
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; }
Element *m_element;
/**
- * The number of occurences
+ * The number of occurrences
*/
int m_count;
};