Commit 55994dd4 authored by Kaitlyn Lee's avatar Kaitlyn Lee
Browse files

Made some quick edits

parent b4e97615
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -217,7 +217,6 @@ namespace Isis {


  void IpceMainWindow::cleanupViewDockList(QObject *obj) {

    QDockWidget *dock = static_cast<QDockWidget *>(obj);
    if (dock) {
      m_viewDocks.removeAll(dock);
@@ -226,14 +225,12 @@ namespace Isis {


  /**
   * @description This slot is connected from Directory::viewClosed(QWidget *) signal.  It will
   * This slot is connected from Directory::viewClosed(QWidget *) signal.  It will
   * close the given view and delete the view. This was written to handle
   *
   * @param view QWidget*
   *
   * @param view QWidget* The view to close.
   */
  void IpceMainWindow::removeView(QWidget *view) {
    
    view->close();
    delete view;
  }
@@ -781,5 +778,4 @@ namespace Isis {
  void IpceMainWindow::raiseWarningTab() {
    m_warningsDock->raise();
  }

}
+8 −9
Original line number Diff line number Diff line
@@ -85,7 +85,6 @@ class CnetEditorView : public AbstractProjectItemView {
    void createToolBars();
    void createMenus();

    private:
      /**
       * @author 2012-09-?? Steven Lambright
       *
+5 −0
Original line number Diff line number Diff line
@@ -153,6 +153,9 @@ namespace Isis {

    delete m_connectionModel;
    m_connectionModel = NULL;

    delete m_sortDialog;
    m_sortDialog = NULL;
  }


@@ -191,6 +194,8 @@ namespace Isis {
    m_control = NULL;
    m_settingsPath = NULL;
    m_workingVersion = NULL;

    m_sortDialog = NULL;
  }


+0 −2
Original line number Diff line number Diff line
@@ -158,6 +158,4 @@ namespace Isis {
  QList<QAction *> ControlPointEditView::toolPadActions() {
    return m_toolPad->actions();
  }


}
+2 −0
Original line number Diff line number Diff line
@@ -393,6 +393,7 @@ namespace Isis {
      }
  }


  /**
   * @brief Initializes the actions that the Directory can provide to a main window.
   *
@@ -1792,6 +1793,7 @@ namespace Isis {
    m_editPointId = controlPointEditView()->controlPointEditWidget()->editPointId();
  }


  /**
   * Autosave for control net.  The control net is auto saved to the same directory as the input
   * net.  It is saved to controlNetFilename.net.bak.
Loading