Showing with 296 additions and 156 deletions.
  1. +0 −2 src/analysis/interpolation/DualEdgeTriangulation.h
  2. +0 −1 src/analysis/interpolation/Node.h
  3. +12 −13 src/analysis/interpolation/ParametricLine.cc
  4. +0 −1 src/analysis/interpolation/Point3D.h
  5. +2 −0 src/app/CMakeLists.txt
  6. +126 −31 src/app/legend/qgslegend.cpp
  7. +24 −2 src/app/legend/qgslegend.h
  8. +10 −3 src/app/legend/qgslegendlayer.cpp
  9. +6 −0 src/app/legend/qgslegendlayer.h
  10. +0 −2 src/app/ogr/qgsnewogrconnection.cpp
  11. +16 −0 src/app/qgisapp.cpp
  12. +4 −0 src/app/qgisapp.h
  13. +0 −1 src/app/qgsdecorationnortharrow.cpp
  14. +0 −1 src/app/qgslabelinggui.cpp
  15. +0 −1 src/browser/main.cpp
  16. +0 −1 src/core/composer/qgscomposermap.cpp
  17. +4 −4 src/core/qgsexpression.cpp
  18. +0 −2 src/core/qgsmaplayerregistry.cpp
  19. +10 −7 src/core/qgsmaprenderer.cpp
  20. +0 −1 src/core/qgspallabeling.cpp
  21. +0 −2 src/core/qgsproviderregistry.cpp
  22. +0 −1 src/core/qgssearchtreenode.cpp
  23. +1 −1 src/core/qgsvectorlayer.cpp
  24. +0 −1 src/core/spatialindex/include/tools/Tools.h
  25. +4 −0 src/gui/qgsmapcanvas.cpp
  26. +17 −10 src/gui/qgsmessagelogviewer.cpp
  27. +3 −0 src/gui/qgsmessagelogviewer.h
  28. +0 −3 src/plugins/delimited_text/qgsdelimitedtextplugin.cpp
  29. +0 −2 src/plugins/dxf2shp_converter/dxflib/src/dl_writer.h
  30. +0 −1 src/plugins/georeferencer/qgsimagewarper.cpp
  31. +4 −6 src/plugins/gps_importer/qgsgpsdevicedialog.cpp
  32. +4 −4 src/plugins/gps_importer/qgsgpsplugingui.cpp
  33. +0 −2 src/plugins/spit/qgsspit.cpp
  34. +0 −1 src/providers/gpx/qgsgpxprovider.cpp
  35. +3 −2 src/providers/ogr/qgsogrdataitems.cpp
  36. +43 −46 src/providers/ogr/qgsogrprovider.cpp
  37. +0 −1 src/providers/osm/osmhandler.cpp
  38. +3 −0 src/ui/qgsmessagelogviewer.ui
2 changes: 0 additions & 2 deletions src/analysis/interpolation/DualEdgeTriangulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@
#include <QList>
#include "MathUtils.h"
#include "TriangleInterpolator.h"
//#include <qapp.h>
#include <QColor>
#include <QFile>
#include <QTextStream>
#include <QMessageBox>
#include <iostream>
#include <cfloat>
#include <QBuffer>
#include <QStringList>
Expand Down
1 change: 0 additions & 1 deletion src/analysis/interpolation/Node.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#define NODE_H

#include "Point3D.h"
#include <iostream>

/**Node is a class used by Line3D. It represents a node in the single directed linked list. Associated Point3D objects are deleted when the node is deleted.*/
class ANALYSIS_EXPORT Node
Expand Down
25 changes: 12 additions & 13 deletions src/analysis/interpolation/ParametricLine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,75 +15,74 @@
***************************************************************************/

#include "ParametricLine.h"
#include <iostream>

#include <qgslogger.h>

void ParametricLine::add( ParametricLine* pl )
{
Q_UNUSED( pl );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine" );
}

void ParametricLine::calcFirstDer( float t, Vector3D* v )
{
Q_UNUSED( t );
Q_UNUSED( v );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

void ParametricLine::calcSecDer( float t, Vector3D* v )
{
Q_UNUSED( t );
Q_UNUSED( v );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

void ParametricLine::calcPoint( float t, Point3D *p )
{
Q_UNUSED( t );
Q_UNUSED( p );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

ParametricLine* ParametricLine::getParent() const
{
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
return 0;
}

void ParametricLine::remove( int i )
{
Q_UNUSED( i );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

void ParametricLine::setControlPoly( QVector<Point3D*>* cp )
{
Q_UNUSED( cp );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

void ParametricLine::setParent( ParametricLine* paral )
{
Q_UNUSED( paral );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
}

int ParametricLine::getDegree() const
{
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
return mDegree;
}

const Point3D* ParametricLine::getControlPoint( int number ) const
{
Q_UNUSED( number );
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
return 0;
}

const QVector<Point3D*>* ParametricLine::getControlPoly() const
{
std::cout << "warning, derive a class from ParametricLine" << std::endl;
QgsDebugMsg( "warning, derive a class from ParametricLine");
return 0;
}
1 change: 0 additions & 1 deletion src/analysis/interpolation/Point3D.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#define POINT3D_H

#include <cmath>
#include <iostream>

/**Point3D is a class to represent a three dimensional point*/
class ANALYSIS_EXPORT Point3D
Expand Down
2 changes: 2 additions & 0 deletions src/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ SET(QGIS_APP_SRCS
legend/qgslegendsymbologygroup.cpp
legend/qgslegendsymbologyitem.cpp
legend/qgslegendvectorsymbologyitem.cpp
legend/qgslayerorder.cpp

ogr/qgsogrhelperfunctions.cpp
ogr/qgsopenvectorlayerdialog.cpp
Expand Down Expand Up @@ -238,6 +239,7 @@ SET (QGIS_APP_MOC_HDRS
legend/qgslegend.h
legend/qgsapplegendinterface.h
legend/qgslegendlayer.h
legend/qgslayerorder.h

ogr/qgsopenvectorlayerdialog.h
ogr/qgsnewogrconnection.h
Expand Down
Loading