Commit e1f4e53a authored by Kaitlyn Lee's avatar Kaitlyn Lee
Browse files

Added history entry and removed unneeded code.

parent 069208cd
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -186,11 +186,6 @@ namespace Isis {
      OpenProjectWorkOrder *workorder = new OpenProjectWorkOrder(m_directory->project());
      workorder->execute();
    }

    // QTimer *timer = new QTimer(this);
    // connect(timer, SIGNAL(timeout()), this, SLOT(setProjectClean()));
    // connect(timer, SIGNAL(timeout()), timer, SLOT(stop()));
    // timer->start(1000);
  }
  void IpceMainWindow::setProjectClean() {
    m_directory->project()->setClean(true);
@@ -293,12 +288,9 @@ namespace Isis {
    foreach (QDockWidget *dock, m_viewDocks) {
      if (dock) {
        removeDockWidget(dock);
        m_viewDocks.removeAll(dock);
        delete dock;
      }
    }
    m_viewDocks.clear();
    // emit enableViewActions(false);
  }


+4 −1
Original line number Diff line number Diff line
@@ -194,7 +194,10 @@ namespace Isis {
   *                           the geometry value does not exist in the config file. This allows the
   *                           geometry to be saved if the config file does not exist and a user
   *                           opens a project. Before, it would not save the geometry because the
   *                           opened project was not temporary. References #5433
   *                           opened project was not temporary. References #5433.
   *   @history 2018-07-17 Kaitlyn Lee - Added signal enableViewActions(bool) to enable/disable
   *                           tab/tile views when views are opened/closed.

   */
  class IpceMainWindow : public QMainWindow {
      Q_OBJECT