summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/FLTKDialog.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-20 18:16:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-20 18:16:16 (GMT)
commit49bcc1ad51e25b0d7c08a2861b997a9d10cf6379 (patch)
tree5081912d7925b370dd196c9632f3d231ffdf05e6 /Source/FLTKDialog/FLTKDialog.cxx
parent2990c3db571a29a00fc59b5c572d5aa6cbe8d117 (diff)
downloadCMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.zip
CMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.tar.gz
CMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.tar.bz2
ENH: remove fltk dialog as it is no longer supported
Diffstat (limited to 'Source/FLTKDialog/FLTKDialog.cxx')
-rw-r--r--Source/FLTKDialog/FLTKDialog.cxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cxx b/Source/FLTKDialog/FLTKDialog.cxx
deleted file mode 100644
index dedb2e4..0000000
--- a/Source/FLTKDialog/FLTKDialog.cxx
+++ /dev/null
@@ -1,41 +0,0 @@
-/*=========================================================================
-
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
-
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
-
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
-
-=========================================================================*/
-
-#include "CMakeSetupGUIImplementation.h"
-#include "FL/Fl.H"
-#include "FL/fl_ask.H"
-
-int main(int argc, char * argv[] )
-{
-
- fl_message_font(FL_HELVETICA,11);
-
- CMakeSetupGUIImplementation * gui
- = new CMakeSetupGUIImplementation;
-
- gui->SetPathToExecutable( argv[0] );
- gui->Show();
- gui->LoadRecentDirectories();
- gui->LoadCacheFromDiskToGUI();
-
- Fl::run();
-
- delete gui;
-
- return 0;
-
-}