~daschuer/mixxx/features_ipod

« back to all changes in this revision

Viewing changes to mixxx/src/widget/wlibrary.cpp

  • Committer: RJ Ryan
  • Date: 2011-10-21 02:26:31 UTC
  • mfrom: (2607.6.15 mixxx-1.9)
  • Revision ID: rryan@mit.edu-20111021022631-8lrw8r1df2fydajv
MergingĀ fromĀ lp:mixxx/1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
void WLibrary::switchToView(const QString& name) {
45
45
    QMutexLocker lock(&m_mutex);
46
 
    qDebug() << "WLibrary::switchToView" << name;
 
46
    //qDebug() << "WLibrary::switchToView" << name;
47
47
    if (m_viewMap.contains(name)) {
48
48
        QWidget* widget = m_viewMap[name];
49
49
        if (widget != NULL && currentWidget() != widget) {
50
 
            qDebug() << "WLibrary::setCurrentWidget" << name;
 
50
            //qDebug() << "WLibrary::setCurrentWidget" << name;
51
51
            setCurrentWidget(widget);
52
52
            dynamic_cast<LibraryView*>(widget)->onShow();
53
53
        }