cmCursesFilePathWidget.cxx 472 B

12345678910111213
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmCursesFilePathWidget.h"
  4. #include "cmCursesPathWidget.h"
  5. #include "cmStateTypes.h"
  6. cmCursesFilePathWidget::cmCursesFilePathWidget(int width, int height, int left,
  7. int top)
  8. : cmCursesPathWidget(width, height, left, top)
  9. {
  10. this->Type = cmStateEnums::FILEPATH;
  11. }