Switch to unified view

a/upqo/ohpool.cpp b/upqo/ohpool.cpp
...
...
94
94
95
#if 0
95
#if 0
96
    qDebug() << "Metadata Pool now: ";
96
    qDebug() << "Metadata Pool now: ";
97
    for (STD_UNORDERED_MAP<int, UPnPClient::UPnPDirObject>::const_iterator it
97
    for (STD_UNORDERED_MAP<int, UPnPClient::UPnPDirObject>::const_iterator it
98
             =  metapool.begin(); it != metapool.end(); it++) {
98
             =  metapool.begin(); it != metapool.end(); it++) {
99
        qDebug() << it->first << it->second.m_title.c_str();
99
        qDebug() << "Id " << it->first << "->\n" << it->second.dump().c_str();
100
    }
100
    }
101
#endif
101
#endif
102
    return true;
102
    return true;
103
}
103
}
104
104