Commit d967117a authored by Tracie Sucharski's avatar Tracie Sucharski
Browse files

Refactored for changes to view classes which are now docked widgets within the ipce main window.

parent 27ed5af4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -43,6 +43,11 @@ namespace Isis {
   * @param[in] parent (QMainWindow *) The parent widget
   */
  AbstractProjectItemView::AbstractProjectItemView(QWidget *parent) : QMainWindow(parent) {

    setWindowFlags(Qt::Widget);



    m_internalModel = new ProjectItemProxyModel(this);
    setAcceptDrops(true);
  }
+1 −0
Original line number Diff line number Diff line
@@ -65,6 +65,7 @@ namespace Isis {
   *                           instead of QWidget. This updates all views in the ipce main window 
   *                           to be main windows themselves, changing from an mdi interface to an
   *                           sdi interface.
   *   @history 2018-05-30 Tracie Sucharski - Added the WindowFlag to set this as a Widget. 
   */
  class AbstractProjectItemView : public QMainWindow {