Changes are: Framework - Startup notification activated for all KOffice applications - Applications are ready for a future renaming of their native mimetype name (more IANA compliant) - Fixed loading of embedded kontour documents - Refuse to load embedded documents with remote URL (e.g. http) for security reasons - "Skip" button in Find/Replace dialog works as intended with the Backwards option KOffice Workspace - Fixed multiple confirmation requests when closing with an unsaved document KWord - Famous bug "all letters squashed together when printing" fixed - Undo/redo fixes for frame creation - Fixed printing from preview mode - Fixed slowness related to clipboard (e.g. when pasting text) - Fixed crash on Ctrl+K at end of paragraph - Fixed crash when hiding headers or footers (which contains a variable) - Transform into normal frame when copying header or footer - Fixed charset conversion issue for "personal expressions" - Save all frames, even for the main frameset, so that borders etc. are kept - Allow to insert GIF images - Fixed applying a format change (e.g. new font family) to a selection - Insert Frame Break at cursor position - Make the document readonly during a search/replace or a spellcheck - Fixed crash when undoing a format change, due to cursor positionned too far right KSpread - Search/replace is now useful (highlights the current matching cell) - Search/replace looks for cells in proper order (top-left to bottom- right) - Corruption when saving dates fixed KChart - KChart can load and save data again - New type of chart: Polar (use wizard to enable this) - Various fixes and UI improvements The following features have been reactivated: - setting a background color - changing the grid color - hiding and showing the grid - hiding and showing the legend - modifying the title of the legend - modifying the x-axis labels - adding one or two header and/or a footer text with user defined fonts and color settings Filters - Translations were not used by many filters (for dialogs and error messages)
22 lines
527 B
Text
22 lines
527 B
Text
$NetBSD: patch-ad,v 1.3 2001/12/21 21:19:29 skrll Exp $
|
|
|
|
--- kchart/kdchart/KDChartTable.h.orig Mon Dec 10 11:53:35 2001
|
|
+++ kchart/kdchart/KDChartTable.h
|
|
@@ -28,9 +28,17 @@
|
|
#define MAXDOUBLE DBL_MAX
|
|
#define MINDOUBLE DBL_MIN
|
|
#else
|
|
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
|
|
#include <values.h>
|
|
+#endif
|
|
#include <limits.h>
|
|
#include <math.h>
|
|
+#ifdef DBL_MAX
|
|
+#define MAXDOUBLE DBL_MAX
|
|
+#endif
|
|
+#ifdef DBL_MIN
|
|
+#define MINDOUBLE DBL_MIN
|
|
+#endif
|
|
#endif
|
|
|
|
#if defined SUN7 || ( defined HP11_aCC && defined HP1100 )
|