/[svn]/qsampler/trunk/src/qsamplerFxSendsModel.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerFxSendsModel.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2073 by schoenebeck, Tue Feb 5 15:42:33 2008 UTC revision 2074 by capela, Mon Mar 29 17:00:30 2010 UTC
# Line 2  Line 2 
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2008, Christian Schoenebeck     Copyright (C) 2008, Christian Schoenebeck
5       Copyright (C) 2010, rncbc aka Rui Nuno Capela. All rights reserved.
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 68  QVariant FxSendsModel::data(const QModel Line 69  QVariant FxSendsModel::data(const QModel
69                          break;                          break;
70                  case Qt::DecorationRole:                  case Qt::DecorationRole:
71                          if (m_FxSends[index.row()].deletion())                          if (m_FxSends[index.row()].deletion())
72                                  return QIcon(":/icons/formRemove.png");                                  return QIcon(":/images/formRemove.png");
73                          if (m_FxSends[index.row()].isNew())                          if (m_FxSends[index.row()].isNew())
74                                  return QIcon(":/icons/itemNew.png");                                  return QIcon(":/images/itemNew.png");
75                          if (m_FxSends[index.row()].isModified())                          if (m_FxSends[index.row()].isModified())
76                                  return QIcon(":/icons/formEdit.png");                                  return QIcon(":/images/formEdit.png");
77                          return QIcon(":/icons/itemFile.png");                          return QIcon(":/images/itemFile.png");
78                  case Qt::FontRole: {                  case Qt::FontRole: {
79                          if (m_FxSends[index.row()].isModified()) {                          if (m_FxSends[index.row()].isModified()) {
80                                  QFont font;                                  QFont font;

Legend:
Removed from v.2073  
changed lines
  Added in v.2074

  ViewVC Help
Powered by ViewVC