~e7appew/ubuntu/vivid/bombono-dvd/mux-files-with-spaces-vivid

« back to all changes in this revision

Viewing changes to src/mbase/project/table.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-05-02 22:09:31 UTC
  • Revision ID: package-import@ubuntu.com-20130502220931-pui7uqs6b468z8sb
Tags: 1.2.1-0ubuntu5
Cherry-pick patches from upstream to build against boost1.53.

Show diffs side-by-side

added added

removed removed

Lines of Context:
426
426
        if( fs::is_directory(dir) )
427
427
        {
428
428
            for( fs::directory_iterator itr(dir), end; itr != end; ++itr )
429
 
                if( IsFrameDir(*itr) )
430
 
                    t_lst.push_back(itr->leaf());
 
429
            {
 
430
                const fs::path& fname = *itr;
 
431
                if( IsFrameDir(fname) )
 
432
                    t_lst.push_back(fs::name_str(fname));
 
433
            }
431
434
        }
432
435
    }
433
436