summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/FLTKPropertyList.cxx
diff options
context:
space:
mode:
authorLuis Ibanez <luis.ibanez@kitware.com>2001-06-21 12:41:14 (GMT)
committerLuis Ibanez <luis.ibanez@kitware.com>2001-06-21 12:41:14 (GMT)
commit446ea3b97d2004f11d9002ec09872a796548e771 (patch)
treed7fff47eb567d6ab5774fa9858b9ad93122695c7 /Source/FLTKDialog/FLTKPropertyList.cxx
parent8fe1e1fcc6be2de71ebe3ce2e252c2e8bd75931b (diff)
downloadCMake-446ea3b97d2004f11d9002ec09872a796548e771.zip
CMake-446ea3b97d2004f11d9002ec09872a796548e771.tar.gz
CMake-446ea3b97d2004f11d9002ec09872a796548e771.tar.bz2
ENH: PropertyRows have now a reference to CMakeSetupGUI and save the cache
at each callback action
Diffstat (limited to 'Source/FLTKDialog/FLTKPropertyList.cxx')
-rw-r--r--Source/FLTKDialog/FLTKPropertyList.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/FLTKDialog/FLTKPropertyList.cxx b/Source/FLTKDialog/FLTKPropertyList.cxx
index 8c42397..8422f07 100644
--- a/Source/FLTKDialog/FLTKPropertyList.cxx
+++ b/Source/FLTKDialog/FLTKPropertyList.cxx
@@ -10,14 +10,18 @@
#include "FL/fl_ask.H"
#include "FL/Fl_Button.H"
#include <cstdio>
+#include "CMakeSetupGUIImplementation.h"
+
namespace fltk {
/////////////////////////////////////////////////////////////////////////////
// PropertyList
-PropertyList::PropertyList()
+PropertyList::PropertyList( CMakeSetupGUIImplementation * cmakeSetup )
{
+ m_CMakeSetup = cmakeSetup;
+ PropertyItemRow::SetCMakeSetupGUI( cmakeSetup );
}