mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-15 08:30:44 +08:00
10 lines
228 B
C++
10 lines
228 B
C++
#include "cmCursesFilePathWidget.h"
|
|
|
|
cmCursesFilePathWidget::cmCursesFilePathWidget(int width, int height,
|
|
int left, int top) :
|
|
cmCursesStringWidget(width, height, left, top)
|
|
{
|
|
m_Type = cmCacheManager::FILEPATH;
|
|
}
|
|
|