Skip to content
Snippets Groups Projects
Commit 256ca484 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

STYLE: remaining deprecated methods with typos

parent 6b614e2a
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ int main(int argc, char * argv[])
if (argc != 9)
{
std::cerr <<
"Detection de changements par mesure de Kullback-Leibler, optimisee par un development de Edgeworth\n";
"Change detection based on Kullback-Leibler distance betweenlocal pdf through an Edgeworth approximation\n";
std::cerr << argv[0] <<
" imgAv imgAp imgResu winSizeMin winSizeMax outRedIndex outGreenIndex outBlueIndex\n";
return 1;
......
......@@ -181,6 +181,14 @@ protected:
virtual void InstantiateTransform(void);
/** THIS METHOD IS DEPRECATED AND SHOULD NOT BE USED. */
void InstanciateTransform()
{
otbWarningMacro(
<< "InstanciateTransform has been deprecated. Please use InstanciateTransform() instead");
this->InstantiateTransform();
}
void GenerateOutputInformation(void) ITK_OVERRIDE;
void GenerateData(void) ITK_OVERRIDE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment