~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to src/Fl_Browser_.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
 
// "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.20 2004/04/11 04:38:57 easysw Exp $"
 
2
// "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.21 2004/07/27 16:02:19 easysw Exp $"
3
3
//
4
4
// Base Browser widget class for the Fast Light Tool Kit (FLTK).
5
5
//
510
510
      display(l);
511
511
    }
512
512
  }         
513
 
  if (docallbacks) do_callback();
 
513
  if (docallbacks) {
 
514
    set_changed();
 
515
    do_callback();
 
516
  }
514
517
  return 1;
515
518
}
516
519
 
687
690
      void* t = selection_; deselect(); selection_ = t;
688
691
    }
689
692
    if (change) {
 
693
      set_changed();
690
694
      if (when() & FL_WHEN_RELEASE) do_callback();
691
 
      else if (!(when()&FL_WHEN_CHANGED)) set_changed();
692
695
    } else {
693
696
      if (when() & FL_WHEN_NOT_CHANGED) do_callback();
694
697
    }
758
761
int Fl_Browser_::item_selected(void* l) const {return l==selection_;}
759
762
 
760
763
//
761
 
// End of "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.20 2004/04/11 04:38:57 easysw Exp $".
 
764
// End of "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.21 2004/07/27 16:02:19 easysw Exp $".
762
765
//