diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-01 20:35:48 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-01 20:35:48 +0000 |
commit | 54f920e47212b92a654432535dd54036833a7087 (patch) | |
tree | a454ee7a63a80f16f15c030e2289112467fa5022 | |
parent | 9540b981beaedc19b7a774ed992973781d975e35 (diff) | |
download | koffice-54f920e47212b92a654432535dd54036833a7087.tar.gz koffice-54f920e47212b92a654432535dd54036833a7087.zip |
Fix koffice FTBFS under gcc4.6
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1244314 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | kplato/kptduration.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kplato/kptduration.cc b/kplato/kptduration.cc index 4da4aaff..5e9d6b44 100644 --- a/kplato/kptduration.cc +++ b/kplato/kptduration.cc @@ -187,7 +187,7 @@ TQString Duration::toString(Format format) const { return result; } -Duration::Duration Duration::fromString(const TQString &s, Format format, bool *ok) { +Duration Duration::fromString(const TQString &s, Format format, bool *ok) { if (ok) *ok = false; TQRegExp matcher; Duration tmp; |