Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 424353
Collapse All | Expand All

(-)src/iv/imageviewer.cpp.old (-2 / +2 lines)
Lines 1352-1359 Link Here
1352
compName (IvImage *first, IvImage *second)
1352
compName (IvImage *first, IvImage *second)
1353
{
1353
{
1354
#if BOOST_FILESYSTEM_VERSION == 3
1354
#if BOOST_FILESYSTEM_VERSION == 3
1355
    std::string firstFile = boost::filesystem3::path(first->name()).leaf().string();
1355
    std::string firstFile = boost::filesystem::path(first->name()).leaf().string();
1356
    std::string secondFile = boost::filesystem3::path(second->name()).leaf().string();
1356
    std::string secondFile = boost::filesystem::path(second->name()).leaf().string();
1357
#else
1357
#else
1358
    std::string firstFile = boost::filesystem::path(first->name()).leaf();
1358
    std::string firstFile = boost::filesystem::path(first->name()).leaf();
1359
    std::string secondFile = boost::filesystem::path(second->name()).leaf();
1359
    std::string secondFile = boost::filesystem::path(second->name()).leaf();

Return to bug 424353