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