fix backward map display

precision_debug
Georg Lukas 2011-04-13 00:21:53 +02:00
rodzic 2edb9ac2d1
commit 7081c12524
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -177,7 +177,7 @@ class StorageDatabase(context : Context) extends
def getPositions(sel : String, selArgs : Array[String], limit : String) : Cursor = Benchmark("getPositions") {
getReadableDatabase().query(Position.TABLE, Position.COLUMNS,
sel, selArgs,
null, null, "CALL, _ID DESC", limit)
null, null, "CALL, _ID", limit)
}
def getRectPositions(lat1 : Int, lon1 : Int, lat2 : Int, lon2 : Int, limit : String) : Cursor = {