author | erik <erik> | 2007-01-11 22:29:59 (UTC) |
---|---|---|
committer | erik <erik> | 2007-01-11 22:29:59 (UTC) |
commit | c0145131ff669a911d51cd0a2b5d3471bf150eb0 (patch) (unidiff) | |
tree | 6350f62cbb85618dccc5523ff5607a9b703c6b95 /core | |
parent | a42e428100b27bd7ee2d191abbe231edfbd61e00 (diff) | |
download | opie-c0145131ff669a911d51cd0a2b5d3471bf150eb0.zip opie-c0145131ff669a911d51cd0a2b5d3471bf150eb0.tar.gz opie-c0145131ff669a911d51cd0a2b5d3471bf150eb0.tar.bz2 |
I missed a bad override signature. This fixes that. There should be no
class inheritance function mismatches at this point.
-rw-r--r-- | core/pim/datebook/holiday/national/nationalcfg.cpp | 2 | ||||
-rw-r--r-- | core/pim/datebook/holiday/national/nationalcfg.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/datebook/holiday/national/nationalcfg.cpp b/core/pim/datebook/holiday/national/nationalcfg.cpp index 33e9db3..5e8ec29 100644 --- a/core/pim/datebook/holiday/national/nationalcfg.cpp +++ b/core/pim/datebook/holiday/national/nationalcfg.cpp | |||
@@ -276,7 +276,7 @@ bool NHcfg::endElement(const QString&, const QString&,const QString& name) | |||
276 | return true; | 276 | return true; |
277 | } | 277 | } |
278 | 278 | ||
279 | QString NHcfg::errorString() const | 279 | QString NHcfg::errorString() |
280 | { | 280 | { |
281 | return err; | 281 | return err; |
282 | } | 282 | } |
diff --git a/core/pim/datebook/holiday/national/nationalcfg.h b/core/pim/datebook/holiday/national/nationalcfg.h index 2aedd95..28e1fdd 100644 --- a/core/pim/datebook/holiday/national/nationalcfg.h +++ b/core/pim/datebook/holiday/national/nationalcfg.h | |||
@@ -57,7 +57,7 @@ public: | |||
57 | virtual bool fatalError(const QXmlParseException& e); | 57 | virtual bool fatalError(const QXmlParseException& e); |
58 | virtual bool startElement(const QString&, const QString&,const QString& name, const QXmlAttributes& attr); | 58 | virtual bool startElement(const QString&, const QString&,const QString& name, const QXmlAttributes& attr); |
59 | virtual bool endElement(const QString&, const QString&,const QString& name); | 59 | virtual bool endElement(const QString&, const QString&,const QString& name); |
60 | virtual QString errorString()const; | 60 | virtual QString errorString(); |
61 | 61 | ||
62 | protected: | 62 | protected: |
63 | QString err,_contentname; | 63 | QString err,_contentname; |