Commit b46221ee authored by Summer Stapleton's avatar Summer Stapleton
Browse files

Removed CnetViz namespace from CnetEditorWidget. Fixes #5054.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@7913 41f8697f-d340-4b68-9986-7bafba869bb8
parent c6d589ed
Loading
Loading
Loading
Loading
+38 −40
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@


namespace Isis {
  namespace CnetViz {
  APrioriLatitudeFilter::APrioriLatitudeFilter(
    AbstractFilter::FilterEffectivenessFlag flag,
    int minimumForSuccess) : AbstractNumberFilter(flag, minimumForSuccess) {
@@ -65,5 +64,4 @@ namespace Isis {
        descriptionSuffix();
  }
}
}
+32 −34
Original line number Diff line number Diff line
@@ -8,13 +8,11 @@ class QString;


namespace Isis {
  class AbstractFilterSelector;
  class ControlCubeGraphNode;
  class ControlMeasure;
  class ControlPoint;

  namespace CnetViz {
    class AbstractFilterSelector;

  /**
   * @brief Allows filtering by a priori surface point latitude
   *
@@ -26,6 +24,7 @@ namespace Isis {
   * @author 2012-04-25 Jai Rideout
   *
   * @internal 
   *   @history 2017-07-25 Summer Stapleton - Removed the CnetViz namespace. Fixes #5054.
   */
  class APrioriLatitudeFilter : public AbstractNumberFilter {
      Q_OBJECT
@@ -46,7 +45,6 @@ namespace Isis {
      QString getPointDescription() const;
  };
}
}

#endif
+38 −40
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@


namespace Isis {
  namespace CnetViz {
  APrioriLatitudeSigmaFilter::APrioriLatitudeSigmaFilter(
    AbstractFilter::FilterEffectivenessFlag flag,
    int minimumForSuccess) : AbstractNumberFilter(flag, minimumForSuccess) {
@@ -65,5 +64,4 @@ namespace Isis {
        descriptionSuffix();
  }
}
}
+32 −34
Original line number Diff line number Diff line
@@ -9,12 +9,10 @@ class QString;

namespace Isis {
  class ControlCubeGraphNode;
  class AbstractFilterSelector;
  class ControlMeasure;
  class ControlPoint;

  namespace CnetViz {
    class AbstractFilterSelector;

  /**
   * @brief Allows filtering by a priori surface point latitude sigma
   *
@@ -26,6 +24,7 @@ namespace Isis {
   * @author 2012-04-25 Jai Rideout
   *
   * @internal 
   *   @history 2017-07-25 Summer Stapleton - Removed the CnetViz namespace. Fixes #5054. 
   */
  class APrioriLatitudeSigmaFilter : public AbstractNumberFilter {
      Q_OBJECT
@@ -46,7 +45,6 @@ namespace Isis {
      QString getPointDescription() const;
  };
}
}

#endif
+38 −40
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@


namespace Isis {
  namespace CnetViz {
  APrioriLongitudeFilter::APrioriLongitudeFilter(
    AbstractFilter::FilterEffectivenessFlag flag,
    int minimumForSuccess) : AbstractNumberFilter(flag, minimumForSuccess) {
@@ -65,5 +64,4 @@ namespace Isis {
        descriptionSuffix();
  }
}
}
Loading