mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-14 06:37:39 +08:00
10 lines
212 B
C++
10 lines
212 B
C++
#include "cmCursesPathWidget.h"
|
|
|
|
cmCursesPathWidget::cmCursesPathWidget(int width, int height,
|
|
int left, int top) :
|
|
cmCursesStringWidget(width, height, left, top)
|
|
{
|
|
m_Type = cmCacheManager::PATH;
|
|
}
|
|
|