paoservis / osmtracker-android

Automatically exported from code.google.com/p/osmtracker-android
GNU General Public License v3.0
0 stars 0 forks source link

a typo in me.guillaumin.android.osmtracker.view.TextNoteDialog #117

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

What version of the product are you using (See "About" screen)?
versionName="0.5.3"

Make/model of your device, and Android version?
Android 2.1

Please provide any additional information below.
In the me.guillaumin.android.osmtracker.view.TextNoteDialog, in row 68, there a 
code as following:
intent.putExtra(Schema.COL_TRACK_ID, TextNoteDialog.this.input.getText()); 

However, I do not think it is reasonable, as the COL_TRACK_ID is the current 
trackId. So I think it should be:

intent.putExtra(Schema.COL_TRACK_ID, wayPointTrackId);
Regards

Original issue reported on code.google.com by jingb...@gmail.com on 26 Feb 2011 at 1:08

GoogleCodeExporter commented 9 years ago
Hi,

yes, you're right, it should be the trackId.

It's fixed in r295.

Thanks and best regards
Matthias

Original comment by matthias...@gmail.com on 28 Feb 2011 at 10:26