void CMovableObject::SetLocation(nReal x, nReal y, nReal z)
{
	mPosition = nova::Vector3f(x, y, z);

	LocationChanged();
}
void CMovableObject::Move(nReal x, nReal y, nReal z)
{
	mPosition += Vector3f(x, y, z);

	LocationChanged();
}
NS_IMETHODIMP
MaemoLocationProvider::Notify(nsITimer* aTimer)
{
  LocationChanged(mGPSDevice, this);
  return NS_OK;
}