Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
04dca645
Commit
04dca645
authored
13 years ago
by
Julien Malik
Browse files
Options
Downloads
Patches
Plain Diff
COMP: bug found when compiling on Windows
parent
5605f526
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Code/Core/otbWrapperParameter.h
+4
-4
4 additions, 4 deletions
Code/Core/otbWrapperParameter.h
Code/Core/otbWrapperParameterGroup.cxx
+1
-1
1 addition, 1 deletion
Code/Core/otbWrapperParameterGroup.cxx
Code/Wrappers/SWIG/otbApplication.i
+3
-3
3 additions, 3 deletions
Code/Wrappers/SWIG/otbApplication.i
with
8 additions
and
8 deletions
Code/Core/otbWrapperParameter.h
+
4
−
4
View file @
04dca645
...
...
@@ -35,18 +35,18 @@ enum DefaultValueMode
* This parameter has no default behaviour and should be set by
* the user.
*/
UNKNOWN
,
DefaultValueMode_
UNKNOWN
,
/**
* The default value of this parameter can be estimated from
* other parameters.
*/
RELATIVE
,
DefaultValueMode_
RELATIVE
,
/**
* The default value of this parameter is not depending on any
* other parameter.
*/
ABSOLUTE
DefaultValueMode_
ABSOLUTE
};
...
...
@@ -167,7 +167,7 @@ protected:
m_Description
(
""
),
m_Key
(
""
),
m_Mandatory
(
true
),
m_DefaultValueMode
(
UNKNOWN
)
m_DefaultValueMode
(
DefaultValueMode_
UNKNOWN
)
{}
/** Destructor */
...
...
This diff is collapsed.
Click to expand it.
Code/Core/otbWrapperParameterGroup.cxx
+
1
−
1
View file @
04dca645
...
...
@@ -371,7 +371,7 @@ ParameterGroup::GetParameterByKey(std::string name)
unsigned
int
ParameterGroup
::
GetNumberOfParameters
()
{
m_ParameterList
.
size
();
return
m_ParameterList
.
size
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Code/Wrappers/SWIG/otbApplication.i
+
3
−
3
View file @
04dca645
...
...
@@ -17,9 +17,9 @@ namespace Wrapper
enum DefaultValueMode
{
UNKNOWN,
RELATIVE,
ABSOLUTE
DefaultValueMode_
UNKNOWN,
DefaultValueMode_
RELATIVE,
DefaultValueMode_
ABSOLUTE
};
typedef enum
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment