blob: 8f86272615670c8956e2a0c8a24eb733278597e3 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "cmCursesPathWidget.h"
cmCursesPathWidget::cmCursesPathWidget(int width, int height,
int left, int top) :
cmCursesStringWidget(width, height, left, top)
{
m_Type = cmCacheManager::PATH;
}
|