diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/WorkspaceCmd.cc | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.7: | 2 | Changes for 0.9.7: |
3 | *03/12/02: | ||
4 | * Missing include of math.h for sqrt (Simon) | ||
5 | WorkspaceCmd.cc | ||
3 | *03/12/01: | 6 | *03/12/01: |
4 | * Fixed shadow bug with other options (Henrik) | 7 | * Fixed shadow bug with other options (Henrik) |
5 | Font.cc | 8 | Font.cc |
diff --git a/src/WorkspaceCmd.cc b/src/WorkspaceCmd.cc index 80a94d4..ba86626 100644 --- a/src/WorkspaceCmd.cc +++ b/src/WorkspaceCmd.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: WorkspaceCmd.cc,v 1.6 2003/10/14 00:21:16 fluxgen Exp $ | 23 | // $Id: WorkspaceCmd.cc,v 1.7 2003/12/02 11:59:51 rathnor Exp $ |
24 | 24 | ||
25 | #include "WorkspaceCmd.hh" | 25 | #include "WorkspaceCmd.hh" |
26 | 26 | ||
@@ -31,6 +31,7 @@ | |||
31 | 31 | ||
32 | #include "FbTk/KeyUtil.hh" | 32 | #include "FbTk/KeyUtil.hh" |
33 | 33 | ||
34 | #include <math.h> | ||
34 | #include <algorithm> | 35 | #include <algorithm> |
35 | #include <functional> | 36 | #include <functional> |
36 | 37 | ||