summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-03 12:26:32 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-03 12:26:32 (GMT)
commitad2fe23f6f8f8c34079a8c3277aec0844188f7e0 (patch)
tree543bedaf1c293d8c46ba4743e89d993591bee443
parentfa9dd93d958c4833d3b2180fdfc57388b4114f26 (diff)
downloadCMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.zip
CMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.tar.gz
CMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.tar.bz2
COMP: fix compile on HP-UX with aCC, reusing the same identifier for a
variable as for the enum type doesn't work here Alex
-rw-r--r--Source/cmDocumentation.cxx76
-rw-r--r--Source/cmDocumentation.h6
2 files changed, 41 insertions, 41 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx
index 3568aef..3858f5e 100644
--- a/Source/cmDocumentation.cxx
+++ b/Source/cmDocumentation.cxx
@@ -459,7 +459,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
i != this->RequestedHelpItems.end();
++i)
{
- this->CurrentForm = i->Form;
+ this->CurrentForm = i->HelpForm;
this->CurrentArgument = i->Argument;
// If a file name was given, use it. Otherwise, default to the
// given stream.
@@ -479,7 +479,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
}
// Print this documentation type to the stream.
- if(!this->PrintDocumentation(i->Type, *s) || !*s)
+ if(!this->PrintDocumentation(i->HelpType, *s) || !*s)
{
result = false;
}
@@ -534,8 +534,8 @@ bool cmDocumentation::CheckOptions(int argc, const char* const* argv)
if(argc == 1)
{
RequestedHelpItem help;
- help.Type = cmDocumentation::Usage;
- help.Form = cmDocumentation::UsageForm;
+ help.HelpType = cmDocumentation::Usage;
+ help.HelpForm = cmDocumentation::UsageForm;
this->RequestedHelpItems.push_back(help);
return true;
}
@@ -554,111 +554,111 @@ bool cmDocumentation::CheckOptions(int argc, const char* const* argv)
(strcmp(argv[i], "-h") == 0) ||
(strcmp(argv[i], "-H") == 0))
{
- help.Type = cmDocumentation::Usage;
- help.Form = cmDocumentation::UsageForm;
+ help.HelpType = cmDocumentation::Usage;
+ help.HelpForm = cmDocumentation::UsageForm;
GET_OPT_COMMAND(help.Argument);
// special case for single command
if (!help.Argument.empty())
{
- help.Type = cmDocumentation::Single;
+ help.HelpType = cmDocumentation::Single;
}
}
else if(strcmp(argv[i], "--help-properties") == 0)
{
- help.Type = cmDocumentation::Properties;
+ help.HelpType = cmDocumentation::Properties;
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-modules") == 0)
{
- help.Type = cmDocumentation::Modules;
+ help.HelpType = cmDocumentation::Modules;
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-commands") == 0)
{
- help.Type = cmDocumentation::Commands;
+ help.HelpType = cmDocumentation::Commands;
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-compatcommands") == 0)
{
- help.Type = cmDocumentation::CompatCommands;
+ help.HelpType = cmDocumentation::CompatCommands;
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-full") == 0)
{
- help.Type = cmDocumentation::Full;
+ help.HelpType = cmDocumentation::Full;
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-html") == 0)
{
- help.Type = cmDocumentation::Full;
+ help.HelpType = cmDocumentation::Full;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::HTMLForm;
+ help.HelpForm = cmDocumentation::HTMLForm;
}
else if(strcmp(argv[i], "--help-man") == 0)
{
- help.Type = cmDocumentation::Full;
+ help.HelpType = cmDocumentation::Full;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::ManForm;
+ help.HelpForm = cmDocumentation::ManForm;
}
else if(strcmp(argv[i], "--help-command") == 0)
{
- help.Type = cmDocumentation::Single;
+ help.HelpType = cmDocumentation::Single;
GET_OPT_COMMAND(help.Argument);
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-module") == 0)
{
- help.Type = cmDocumentation::SingleModule;
+ help.HelpType = cmDocumentation::SingleModule;
GET_OPT_COMMAND(help.Argument);
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-property") == 0)
{
- help.Type = cmDocumentation::SingleProperty;
+ help.HelpType = cmDocumentation::SingleProperty;
GET_OPT_COMMAND(help.Argument);
GET_OPT_FILENAME(help.Filename);
- help.Form = this->GetFormFromFilename(help.Filename);
+ help.HelpForm = this->GetFormFromFilename(help.Filename);
}
else if(strcmp(argv[i], "--help-command-list") == 0)
{
- help.Type = cmDocumentation::List;
+ help.HelpType = cmDocumentation::List;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::TextForm;
+ help.HelpForm = cmDocumentation::TextForm;
}
else if(strcmp(argv[i], "--help-module-list") == 0)
{
- help.Type = cmDocumentation::ModuleList;
+ help.HelpType = cmDocumentation::ModuleList;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::TextForm;
+ help.HelpForm = cmDocumentation::TextForm;
}
else if(strcmp(argv[i], "--help-property-list") == 0)
{
- help.Type = cmDocumentation::PropertyList;
+ help.HelpType = cmDocumentation::PropertyList;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::TextForm;
+ help.HelpForm = cmDocumentation::TextForm;
}
else if(strcmp(argv[i], "--copyright") == 0)
{
- help.Type = cmDocumentation::Copyright;
+ help.HelpType = cmDocumentation::Copyright;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::UsageForm;
+ help.HelpForm = cmDocumentation::UsageForm;
}
else if((strcmp(argv[i], "--version") == 0) ||
(strcmp(argv[i], "-version") == 0) ||
(strcmp(argv[i], "/V") == 0))
{
- help.Type = cmDocumentation::Version;
+ help.HelpType = cmDocumentation::Version;
GET_OPT_FILENAME(help.Filename);
- help.Form = cmDocumentation::UsageForm;
+ help.HelpForm = cmDocumentation::UsageForm;
}
- if(help.Type != None)
+ if(help.HelpType != None)
{
// This is a help option. See if there is a file name given.
result = true;
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h
index 64a288d..abfd258 100644
--- a/Source/cmDocumentation.h
+++ b/Source/cmDocumentation.h
@@ -262,9 +262,9 @@ private:
struct RequestedHelpItem
{
- RequestedHelpItem():Form(TextForm), Type(None) {}
- cmDocumentationEnums::Form Form;
- cmDocumentationEnums::Type Type;
+ RequestedHelpItem():HelpForm(TextForm), HelpType(None) {}
+ cmDocumentationEnums::Form HelpForm;
+ cmDocumentationEnums::Type HelpType;
std::string Filename;
std::string Argument;
};