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

In OpenProjectWorkOrder changed user prompt to indicate a directory should be...

In OpenProjectWorkOrder changed user prompt to indicate a directory should be chosen, not a project file.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce_FY17-Sprint1@7522 41f8697f-d340-4b68-9986-7bafba869bb8
parent 9c6d7fc2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ namespace Isis {
    }
    else if (success) {
      QString projectName = QFileDialog::getExistingDirectory(qobject_cast<QWidget *>(parent()),
                                                              tr("Open Project"));
                                                              tr("Select Project Directory"));

      if (!projectName.isEmpty()) {
        project()->open(projectName);
+2 −0
Original line number Diff line number Diff line
@@ -38,6 +38,8 @@ namespace Isis {
   *                           command line.
   *   @history 2016-06-10 Ian Humphrey - Minor updates to documentation and coding standards.
   *                           Fixes #3952.
   *   @history 2017-03-28 Tracie Sucharski - Changed user prompt to indicating a directory is to
   *                           be selected, not a project file.
   */
  class OpenProjectWorkOrder : public WorkOrder {
      Q_OBJECT