Changeset 2715


Ignore:
Timestamp:
08/16/07 13:14:11 (6 years ago)
Author:
njp
Message:

2007-08-16 Neil J. Patel <njp@…>

  • src/moko-dialer.c: (on_network_registered): Fix a typo.
  • src/moko-keypad.c: (on_panel_user_input): Make '#' the same as 'OK' when inputting a PIN (Bug #708)
Location:
trunk/src/target/OM-2007.2/applications/openmoko-dialer2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog

    r2714 r2715  
     12007-08-16  Neil J. Patel  <njp@o-hand.com> 
     2 
     3        * src/moko-dialer.c: (on_network_registered): 
     4        Fix a typo. 
     5 
     6        * src/moko-keypad.c: (on_panel_user_input): 
     7        Make '#' the same as 'OK' when inputting a PIN (Bug #708) 
     8 
    192007-08-16  Neil J. Patel  <njp@o-hand.com> 
    210 
  • trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/moko-dialer.c

    r2714 r2715  
    426426    case MOKO_GSMD_CONNECTION_NETREG_SEARCHING: 
    427427      /* Do nothing */ 
    428       g_print ("NetReg: Seraching for network\n"); 
     428      g_print ("NetReg: Searching for network\n"); 
    429429      g_source_remove (priv->reg_timeout); 
    430430      priv->registered = TRUE; 
  • trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/moko-keypad.c

    r2691 r2715  
    184184  priv = keypad->priv; 
    185185 
     186  /* Phones use '#' for PIN 'entered' signal */ 
     187  if (priv->pin_mode && digit == '#') 
     188  {  
     189    on_dial_clicked (NULL, keypad); 
     190    return; 
     191  }    
     192 
    186193  /* Create a string to insert into the textview */ 
    187194  buf[0] = digit; 
Note: See TracChangeset for help on using the changeset viewer.