Changeset 2609


Ignore:
Timestamp:
08/02/07 17:27:01 (6 years ago)
Author:
njp
Message:

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

  • src/moko-dialer.c: (on_incoming_call): Double check for incoming status as new tabs keep appearing.
Location:
trunk/src/target/OM-2007.2/applications/openmoko-dialer2
Files:
2 edited

Legend:

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

    r2607 r2609  
     12007-08-02  Neil J. Patel  <njp@o-hand.com> 
     2 
     3        * src/moko-dialer.c: (on_incoming_call): 
     4        Double check for incoming status as new tabs keep appearing. 
     5 
    162007-08-02  Neil J. Patel  <njp@o-hand.com> 
    27 
  • trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/moko-dialer.c

    r2605 r2609  
    255255  g_return_if_fail (MOKO_IS_DIALER (dialer)); 
    256256  priv = dialer->priv; 
    257  
     257   
    258258  if (priv->status != DIALER_STATUS_INCOMING) 
    259259    return; 
     
    352352 
    353353  /* We sometimes get the signals multiple times */ 
    354   if (priv->status == DIALER_STATUS_INCOMING) 
     354  if (priv->status == DIALER_STATUS_INCOMING  
     355        || GTK_IS_WIDGET (priv->talking->parent)) 
     356  { 
     357    g_print ("We are already showing the incoming page"); 
    355358    return; 
     359  } 
    356360 
    357361  priv->status = DIALER_STATUS_INCOMING; 
Note: See TracChangeset for help on using the changeset viewer.