~daschuer/mixxx/features_ipod

« back to all changes in this revision

Viewing changes to mixxx/src/library/sidebarmodel.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:
229
229
 
230
230
void SidebarModel::rightClicked(const QPoint& globalPos, const QModelIndex& index) {
231
231
    //qDebug() << "SidebarModel::rightClicked() index=" << index;
232
 
    if (index.isValid())
233
 
    {
234
 
        if (index.internalPointer() == this)
235
 
        {
 
232
    if (index.isValid()) {
 
233
        if (index.internalPointer() == this) {
236
234
            m_sFeatures[index.row()]->activate();
237
235
            m_sFeatures[index.row()]->onRightClick(globalPos);
238
236
        }