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

Set window title for sorting dialog.

parent 179628e0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,8 @@ namespace Isis {
    CnetEditorWidget *cnetWidget) : QDialog(cnetWidget) {
    m_cnetWidget = cnetWidget;

    setWindowTitle("Table Sorting Dialog");

    QGridLayout *mainLayout = new QGridLayout;
    mainLayout->setColumnMinimumWidth(0, 20);
    setLayout(mainLayout);
@@ -200,4 +202,3 @@ namespace Isis {
      m_measureSortingCheckBox->isChecked());
  }
}
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,8 @@ namespace Isis {
   *
   * @internal
   *   @history 2012-09-28 Kimberly Oyama - Changed member variables to be prefixed with "m_".
   *   @history 2018-06-12 Kaitlyn Lee - Set the window title to "Table Sorting Dialog"
   *                           with setWindowTitle().
   */
  class CnetEditorSortConfigDialog : public QDialog {
      Q_OBJECT
@@ -64,4 +66,3 @@ namespace Isis {
}

#endif