Bug 609418 double vs const double for nsGeoPositionCoords::nsGeoPositionCoords(...) r=doug.turner a=doug.turner

This commit is contained in:
Ginn Chen 2010-11-16 16:23:05 +08:00
Родитель f61916e1a0
Коммит ca574a610e
1 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -94,13 +94,10 @@ public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMGEOPOSITIONCOORDS
nsGeoPositionCoords(const double aLat,
const double aLong,
const double aAlt,
const double aHError,
const double aVError,
const double aHeading,
const double aSpeed);
nsGeoPositionCoords(double aLat, double aLong,
double aAlt, double aHError,
double aVError, double aHeading,
double aSpeed);
private:
~nsGeoPositionCoords();
const double mLat, mLong, mAlt, mHError, mVError, mHeading, mSpeed;