diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2014-05-16 07:35:08 (GMT) |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2014-05-16 07:35:08 (GMT) |
commit | c0baf108ed30368252b7a99afd2751bb001369b0 (patch) | |
tree | 907bbe7b71bfaed472540d24c36f9c1d3aa29c27 | |
parent | 0580ae5453f84544a1880ed1256bd524ff5f6c9b (diff) | |
download | libkolabxml-c0baf108ed30368252b7a99afd2751bb001369b0.tar.gz |
Fixed typos
-rw-r--r-- | src/kolabconversions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kolabconversions.h b/src/kolabconversions.h index 158ee2b..29068c6 100644 --- a/src/kolabconversions.h +++ b/src/kolabconversions.h @@ -127,7 +127,7 @@ std::vector<CategoryColor> readColors(const KolabXSD::Configuration::categorycol return colors; } -KolabXSD::Configuration::type_type getConfiguratinoType(Kolab::Configuration::ConfigurationType t) +KolabXSD::Configuration::type_type getConfigurationType(Kolab::Configuration::ConfigurationType t) { switch (t) { case Kolab::Configuration::TypeDictionary: @@ -168,7 +168,7 @@ std::string serializeObject <Kolab::Configuration> (const Kolab::Configuration & // WARNING("missing last_modification_date, fallback to current timestamp"); lastModificationDate = fromDateTime(timestamp()); } - KolabXSD::Configuration n(uid, getProductId(prod), created, lastModificationDate, getConfiguratinoType(configuration.type())); + KolabXSD::Configuration n(uid, getProductId(prod), created, lastModificationDate, getConfigurationType(configuration.type())); switch (configuration.type()) { case Kolab::Configuration::TypeDictionary: { |