Changeset 1897

Show
Ignore:
Timestamp:
Fri Feb 3 19:26:47 2006
Author:
fgerlits
Message:

fixed #1614

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/livesupport/src/products/gLiveSupport/src/ScratchpadWindow.cxx

    r1896 r1897  
    608 608 ScratchpadWindow :: contents(void)                              throw ()  
    609 609 {  
    610       std::ostringstream              contentsStream;  
    611       Gtk::TreeModel::const_iterator  it;  
      610     std::ostringstream                      contentsStream;  
      611     Gtk::TreeModel::const_reverse_iterator  it;  
    612 612  
    613       for (it = treeModel->children().begin();  
    614                                   it != treeModel->children().end(); ++it) {  
      613     for (it = treeModel->children().rbegin();  
      614                                 it != treeModel->children().rend(); ++it) {  
    615 615         Gtk::TreeRow        row = *it;  
    616 616         Ptr<Playable>::Ref  playable = row[modelColumns.playableColumn];