[Gambas-user] remove bookmark error
    Wojtek 
    gambas at ...162...
       
    Sat Aug  2 17:36:59 CEST 2003
    
    
  
FSupSelector.class in 1239 line:
Replace
    CASE 6
      Message.Question(("Do you really want to remove this bookmark ?"), 
("Remove"), ("Cancel"))
      
      IF value = 0 THEN
        CoolTabs.Remove(CoolTabs.Current.Tag)
      ENDIF
with
    CASE 6
      Value = Message.Question(("Do you really want to remove this bookmark 
?"), ("Remove"), ("Cancel"))
      
      IF Value = 1 THEN
        CoolTabs.Remove(CoolTabs.Current.Tag)
      ENDIF
Otherwise Cancel = Remove
-- 
Wojciech Saltarski
    
    
More information about the User
mailing list