| 105 | { |
| 106 | public: |
| 107 | MoveHelper(MyTaskModel *model, |
| 108 | KDGantt::ConstraintModel *, |
| 109 | KDGantt::View *, |
| 110 | #if 0 |
| 111 | KDGantt::ConstraintModel* constraints, |
| 112 | KDGantt::View* view, |
| 113 | #endif |
| 114 | int row1, int row2) |
| 115 | : QObject(model) |
| 116 | , m_model(model) |
| 117 | , |
| 118 | #if 0 |
| 119 | m_constraints( constraints ), |
| 120 | m_view( view ), |
| 121 | #endif |
| 122 | m_row1(row1) |
| 123 | , m_row2(row2) |
| 124 | { |
| 125 | } |
| 126 | |
| 127 | void showContraints(const QString & /*pfx*/) |
| 128 | { |
nothing calls this directly
no outgoing calls
no test coverage detected