Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tidy up #includes
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5795 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Sep 10, 2006
1 parent c7dad62 commit 3f24fa9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
3 changes: 1 addition & 2 deletions src/providers/gpx/gpsdata.cpp
Expand Up @@ -18,8 +18,7 @@
#include <limits>
#include <stdexcept>

#include <qfile.h>
//Added by qt3to4:
#include <QFile>
#include <QTextStream>

#include "gpsdata.h"
Expand Down
4 changes: 2 additions & 2 deletions src/providers/gpx/gpsdata.h
Expand Up @@ -27,8 +27,8 @@
#include <vector>

#include <expat.h>
#include <qstring.h>
#include <qtextstream.h>
#include <QString>
#include <QTextStream>

#include "qgsrect.h"

Expand Down
10 changes: 4 additions & 6 deletions src/providers/gpx/qgsgpxprovider.cpp
Expand Up @@ -22,17 +22,15 @@
#include <cfloat>
#include <iostream>
#include <limits>
#include <math.h>
#include <cmath>

// Changed #include <qapp.h> to <qapplication.h>. Apparently some
// debian distros do not include the qapp.h wrapper and the compilation
// fails. [gsherman]
#include <qapplication.h>
#include <QApplication>

#include <qfile.h>
#include <qtextstream.h>
#include <qstringlist.h>
#include <qrect.h>
#include <QFile>
#include <QTextStream>

#include "qgis.h"
#include "qgsdataprovider.h"
Expand Down

0 comments on commit 3f24fa9

Please sign in to comment.