Commit eb375f30 authored by Jeannie Backer's avatar Jeannie Backer
Browse files

Fixed name of support class for BundleSolutionInfo.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@6132 41f8697f-d340-4b68-9986-7bafba869bb8
parent 25fbce2a
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -14,15 +14,14 @@ namespace Isis {
   *
   * @param parent
   */
  BundleSolutionInfoTreeWidgetItem::BundleSolutionInfoTreeWidgetItem(
      BundleSolutionInfo *bundleSolutionInfo, QTreeWidget *parent)
      : QTreeWidgetItem(parent, UserType) {
  BundleSolutionInfoTreeWidgetItem::BundleSolutionInfoTreeWidgetItem(BundleSolutionInfo *bundleSolutionInfo,
      QTreeWidget *parent) : QTreeWidgetItem(parent, UserType) {
    m_bundleSolutionInfo = bundleSolutionInfo;

//  setText(0, m_control->displayProperties()->displayName());
    setText(0, "BundleSolution");
    setText(0, m_bundleSolutionInfo->runTime());
    setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
    setIcon(0, QIcon(":info"));
    setIcon(0, QIcon(":results"));

    connect(m_bundleSolutionInfo, SIGNAL(destroyed(QObject *)), this, SLOT(deleteLater()));
  }
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ namespace Isis {
   *
   * This class visualizes a BundleSolutionInfo * from the project in the project tree widget.
   *
   * @author 2014-07-23 Ken Edmundson
   * @author 2014-07-22 Ken Edmundson
   *
   * @internal
   *   @history 2015-02-20 Jeannie Backer - Name changed from BundleResults to