diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-25 00:33:26 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-25 00:33:26 -0500 |
| commit | bb9c31e5a08e319cb8663f546fe07ac24d2e1c04 (patch) | |
| tree | a21582c95fae004bf158c3aae572ec0121353c1a | |
| parent | b1ec61a676b0e3b94e60aa2ad2239b784e6e42bf (diff) | |
| download | sigen-bb9c31e5a08e319cb8663f546fe07ac24d2e1c04.tar.gz sigen-bb9c31e5a08e319cb8663f546fe07ac24d2e1c04.tar.xz sigen-bb9c31e5a08e319cb8663f546fe07ac24d2e1c04.zip | |
Typos in EggGroup
| -rw-r--r-- | sigmod/EggGroup.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sigmod/EggGroup.h b/sigmod/EggGroup.h index bcbe98d4..89e6a754 100644 --- a/sigmod/EggGroup.h +++ b/sigmod/EggGroup.h @@ -42,7 +42,7 @@ class SIGMOD_EXPORT EggGroup : public Object /** * Copy constructor. * - * \param eggGroup The item to copy. + * \param eggGroup The group to copy. */ EggGroup(const EggGroup& eggGroup); /** @@ -55,7 +55,7 @@ class SIGMOD_EXPORT EggGroup : public Object /** * Data copy constructor. Copies the data from \p eggGroup as a child of \p parent with id \p id. * - * \param eggGroup The item to copy the data from. + * \param eggGroup The group to copy the data from. * \param parent The parent of the group. * \param id The id number for the group. */ @@ -70,7 +70,7 @@ class SIGMOD_EXPORT EggGroup : public Object EggGroup(const QDomElement& xml, const Sigmod* parent, const int id = -1); /** - * Check to make sure the item's values are valid. + * Check to make sure the group's values are valid. */ void validate(); @@ -81,9 +81,9 @@ class SIGMOD_EXPORT EggGroup : public Object */ void load(const QDomElement& xml); /** - * Get the data for the item in XML format. + * Get the data for the group in XML format. * - * \return The XML structure representing the item. + * \return The XML structure representing the group. */ QDomElement save() const; |
