Changeset 3071
- Timestamp:
- 10/02/07 12:47:05 (6 years ago)
- Location:
- trunk/src/target/OM-2007.2/applications/openmoko-dialer2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
src/moko-dialer.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog
r3070 r3071 1 2007-10-02 Thomas Wood <thomas@openedhand.com> 2 3 Patch by: Roman Moravcik <roman.moravcik@gmail.com> 4 5 * src/moko-dialer.c: (on_keypad_dial_clicked), (on_incoming_call), 6 (on_network_registered): Store network information (LocationAreaCode, 7 CellID) in moko journal. 8 1 9 2007-10-02 Thomas Wood <thomas@openedhand.com> 2 10 -
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/moko-dialer.c
r3070 r3071 72 72 guint reg_timeout; 73 73 MokoGsmdConnectionNetregType registered; 74 MokoGSMLocation gsm_location; 74 75 }; 75 76 … … 290 291 moko_journal_entry_set_dtstart (priv->entry, priv->time); 291 292 moko_journal_entry_set_source (priv->entry, "Openmoko Dialer"); 293 moko_journal_entry_set_gsm_location (priv->entry, &priv->gsm_location); 292 294 moko_journal_voice_info_set_distant_number (priv->entry, number); 293 295 if (entry && entry->contact->uid) … … 480 482 g_debug ("NetReg: Network registered"); 481 483 g_debug ("\tLocationAreaCode = %x\n\tCellID = %x", lac, cell); 484 priv->gsm_location.lac = lac; 485 priv->gsm_location.cid = cell; 482 486 g_source_remove (priv->reg_timeout); 483 487 break; … … 514 518 moko_journal_entry_set_dtstart (priv->entry, priv->time); 515 519 moko_journal_entry_set_source (priv->entry, "Openmoko Dialer"); 520 moko_journal_entry_set_gsm_location (priv->entry, &priv->gsm_location); 516 521 } 517 522 /* Set up the user interface */
Note: See TracChangeset
for help on using the changeset viewer.
