
Index: approach.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/ATC/approach.cxx,v
retrieving revision 1.21
diff -u -w -b -r1.21 approach.cxx
--- approach.cxx	25 Oct 2005 13:49:56 -0000	1.21
+++ approach.cxx	25 Oct 2005 16:49:42 -0000
@@ -612,7 +612,9 @@
 // =======================================================================
 // Add plane to Approach list
 // =======================================================================
-void FGApproach::AddPlane(const string& pid) {
+
+void FGApproach::AddPlane(const std::string& pid) {
+
 
   int i;
   for ( i=0; i<num_planes; i++) {


Index: AIFlightPlan.hxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/AIModel/AIFlightPlan.hxx,v
retrieving revision 1.11
diff -u -w -b -r1.11 AIFlightPlan.hxx
--- AIFlightPlan.hxx	25 Oct 2005 13:49:56 -0000	1.11
+++ AIFlightPlan.hxx	25 Oct 2005 19:17:09 -0000
@@ -77,14 +77,14 @@
   time_t getStartTime() { return start_time; }; 
 
   void    create(FGAirport *dep, FGAirport *arr, int leg, double alt, double speed, double lat, double lon,
-		 bool firstLeg, double radius, const string& fltType, const string& aircraftType, const string& airline);
+		 bool firstLeg, double radius, string fltType, string aircraftType, string airline);
 
   void setLeg(int val) { leg = val;};
   void setTime(time_t st) { start_time = st; };
   int getGate() { return gateId; };
   double getLeadInAngle() { return leadInAngle; };
-  const string& getRunway() { return rwy._rwy_no; };
-  const string& getRunwayId() { return rwy._id; };
+  string getRunway() { return rwy._rwy_no; };
+  string getRunwayId() { return rwy._id; };
   void setRepeat(bool r) { repeat = r; };
   bool getRepeat(void) { return repeat; };
   void restart(void);
@@ -106,8 +106,8 @@
   int gateId;
   string activeRunway;
 
-  void createPushBack(bool, FGAirport*, double, double, double, const string&, const string&, const string&);
-  void createTaxi(bool, int, FGAirport *, double, double, double, const string&, const string&, const string&);
+  void createPushBack(bool, FGAirport*, double, double, double, string, string, string);
+  void createTaxi(bool, int, FGAirport *, double, double, double, string, string, string);
   void createTakeOff(bool, FGAirport *, double);
   void createClimb(bool, FGAirport *, double, double);
   void createCruise(bool, FGAirport*, FGAirport*, double, double, double, double);

Index: metar_main.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/Main/metar_main.cxx,v
retrieving revision 1.10
diff -u -w -b -r1.10 metar_main.cxx
--- metar_main.cxx	25 Oct 2005 16:28:46 -0000	1.10
+++ metar_main.cxx	25 Oct 2005 19:02:41 -0000
@@ -18,7 +18,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
 //
-// $Id: metar_main.cxx,v 1.10 2005/10/25 16:28:46 ehofman Exp $
+// $Id: metar_main.cxx,v 1.9 2005/10/25 13:49:57 ehofman Exp $
 
 #include <iomanip>
 #include <sstream>
@@ -28,6 +28,7 @@
 #include <simgear/environment/metar.hxx>
 #include <simgear/structure/exception.hxx>
 
+
 using namespace std;
 
 // text color
@@ -484,6 +485,8 @@
 	);
 }
 
+//SGSky* thesky = new SGSky;
+
 int main(int argc, char *argv[])
 {
 	bool report = true;

