~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to intern/audaspace/intern/AUD_SequencerReader.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
                                try
113
113
                                {
114
114
                                        handle = boost::shared_ptr<AUD_SequencerHandle>(new AUD_SequencerHandle(entry, m_device));
115
 
                                        handles.push_front(handle);
 
115
                                        handles.push_back(handle);
116
116
                                }
117
117
                                catch(AUD_Exception&)
118
118
                                {
143
143
                        try
144
144
                        {
145
145
                                handle = boost::shared_ptr<AUD_SequencerHandle>(new AUD_SequencerHandle(*eit, m_device));
146
 
                                handles.push_front(handle);
 
146
                                handles.push_back(handle);
147
147
                        }
148
148
                        catch(AUD_Exception&)
149
149
                        {