Commit e8f32ece authored by Adam Goins's avatar Adam Goins
Browse files

Removed debug statements

parent c910f7e1
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -127,20 +127,12 @@ namespace Isis {
    nullify();
  }


  void ControlNet::emitMeasureModified(ControlMeasure *measure, ControlMeasure::ModType type, QVariant oldValue, QVariant newValue) {
    std::cout << "Measure modified" << std::endl;
    std::cout << "Old value: " << oldValue.toString() << std::endl;
    std::cout << "New value: " << newValue.toString() << std::endl;
    emit measureModified(measure, type, oldValue, newValue);

  }

  void ControlNet::emitPointModified(ControlPoint *point, ControlPoint::ModType type, QVariant oldValue, QVariant newValue) {
    std::cout << "Point modified" << std::endl;
    std::cout << point << std::endl;

    std::cout << "Old value: " << oldValue.toString() << std::endl;
    std::cout << "New value: " << newValue.toString() << std::endl;
    emit pointModified(point, type, oldValue, newValue);
  }