mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
** fixed bug #965720 by adding math.h for gcc 3.4 problems
git-svn-id: http://svn.osgeo.org/qgis/trunk@1519 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
92212fc3a2
commit
ea2b00d4c5
@ -1,8 +1,11 @@
|
||||
QGIS Change Log
|
||||
ChangeLog,v 1.106 2004/06/02 14:05:44 timlinux Exp
|
||||
ChangeLog,v 1.107 2004/06/03 14:05:00 jobi Exp
|
||||
------------------------------------------------------------------------------
|
||||
Version 0.3 'Madison' .... development version
|
||||
|
||||
2004-06-03 [jobi] 0.3.0devel12
|
||||
** fixed bug #965720 by adding math.h for gcc 3.4 problems
|
||||
|
||||
2004-06-02 [ts] 0.3.0devel11
|
||||
** Changed maplayer draw() and its subclasses vectorlayer and rasterlayer to
|
||||
not need src parameter (this can be obtained from painter->device()).
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl configure.in,v 1.110 2004/06/02 14:05:44 timlinux Exp
|
||||
dnl configure.in,v 1.111 2004/06/03 14:05:00 jobi Exp
|
||||
|
||||
AC_INIT
|
||||
|
||||
@ -24,7 +24,7 @@ dnl ---------------------------------------------------------------------------
|
||||
MAJOR_VERSION=0
|
||||
MINOR_VERSION=3
|
||||
MICRO_VERSION=0
|
||||
EXTRA_VERSION=11
|
||||
EXTRA_VERSION=12
|
||||
if test $EXTRA_VERSION -eq 0; then
|
||||
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
|
||||
else
|
||||
|
@ -45,6 +45,7 @@ email : tim@linfiniti.com
|
||||
|
||||
//non qt includes
|
||||
#include <iostream>
|
||||
#include <math.h>
|
||||
|
||||
//the gui subclass
|
||||
#include "plugingui.h"
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include <qcombobox.h>
|
||||
#include <qcheckbox.h>
|
||||
//standard includes
|
||||
#include <math.h>
|
||||
|
||||
PluginGui::PluginGui() : PluginGuiBase()
|
||||
{
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <cfloat>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
#include <math.h>
|
||||
|
||||
#include <qapp.h>
|
||||
#include <qfile.h>
|
||||
|
@ -16,7 +16,9 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
/* $Id$ */
|
||||
|
||||
#include <assert.h>
|
||||
#include <math.h>
|
||||
#include <qstring.h>
|
||||
#include "qgsrect.h"
|
||||
#include "qgsscalecalculator.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user