Summary: | Compile error on Solaris 8 - spectrumwidget.cpp and kalziumutils.cpp both give a finite() undefined error | ||
---|---|---|---|
Product: | [Applications] kalzium | Reporter: | Steve Evans <stevee> |
Component: | general | Assignee: | Kalzium Developers <kalzium> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Solaris | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Steve Evans
2005-10-21 15:10:41 UTC
SVN commit 473400 by aacid: include ieeefp.h if we are on solaris BUGS: 114816 M +5 -0 spectrumwidget.cpp --- branches/KDE/3.5/kdeedu/kalzium/src/spectrumwidget.cpp #473399:473400 @@ -33,6 +33,11 @@ #include <qpixmap.h> #include <qtooltip.h> +#include <qglobal.h> +#if defined(Q_OS_SOLARIS) +#include <ieeefp.h> +#endif + SpectrumWidget::SpectrumWidget( QWidget *parent, const char* name ) : QWidget( parent, name ) { startValue = 0; Please commit the same patch also for kalziumutils.cpp |