~ubuntu-branches/ubuntu/oneiric/k3b/oneiric

« back to all changes in this revision

Viewing changes to libk3b/tools/k3blistview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-03-05 18:46:32 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20100305184632-uhnjo6k45yi6bkmu
Tags: 1.90.0~rc1-0ubuntu1
* New upstream release
  - Bump kdelibs5-dev to 4.4.1 as required, k3b uses KAuth since this version

Show diffs side-by-side

added added

removed removed

Lines of Context:
777
777
            //      m_editorMsfEdit->installEventFilter( this );
778
778
            d->msfEditLineEdit->installEventFilter( this );
779
779
        }
780
 
        m_editorMsfEdit->setMsfValue( K3b::Msf::fromString( item->text(col) ) );
 
780
        m_editorMsfEdit->setValue( K3b::Msf::fromString( item->text(col) ) );
781
781
        return m_editorMsfEdit;
782
782
 
783
783
    default:
943
943
            newValue = QString::number(m_editorSpinBox->value());
944
944
            break;
945
945
        case K3b::ListViewItem::MSF:
946
 
            newValue = QString::number(m_editorMsfEdit->value());
 
946
            newValue = QString::number(m_editorMsfEdit->value().lba());
947
947
            break;
948
948
        }
949
949
 
969
969
                m_editorSpinBox->setValue( m_currentEditItem->text( m_currentEditColumn ).toInt() );
970
970
                break;
971
971
            case K3b::ListViewItem::MSF:
972
 
                m_editorMsfEdit->setMsfValue( K3b::Msf::fromString( m_currentEditItem->text( m_currentEditColumn ) ) );
 
972
                m_editorMsfEdit->setValue( K3b::Msf::fromString( m_currentEditItem->text( m_currentEditColumn ) ) );
973
973
                break;
974
974
            }
975
975
        }