| Summary: | constness issue in kcalcore | ||
|---|---|---|---|
| Product: | [Applications] kdepimlibs | Reporter: | tropikhajma <tropikhajma> |
| Component: | kcal | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | SVN trunk | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Solaris | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
SVN commit 1170702 by winterz: add missing 'const' to the ctor implementation. found by the Sun Studio compiler. BUG: 249797 M +1 -1 exceptions.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=1170702 |
Version: SVN trunk (using Devel) OS: Solaris while kcalcore/exceptions.cpp uses Exception::Exception( ErrorCode code, const QStringList &arguments ) the kcalcore/exceptions.h uses explicit Exception( const ErrorCode code, const QStringList &arguments = QStringList() ); Note the const at ErrorCode. This causes problems with the Sun Studio compiler, which, to keep compatibility with some ages old bug, distinguishes between const and nonconst variables. Reproducible: Always