Browse Source

minor fix in inheritance function call

Johannes Ruehle 11 years ago
parent
commit
4db399eae6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      semseg/SemSegNovelty.cpp

+ 1 - 1
semseg/SemSegNovelty.cpp

@@ -68,7 +68,7 @@ SemSegNovelty::SemSegNovelty ( const Config * _conf,
   ///////////
   ///////////
   // here comes the new code part different from the empty constructor
   // here comes the new code part different from the empty constructor
   ///////////    
   ///////////    
-  SemanticSegmentation::setClassNames ( & ( md->getClassNames ( "train" ) ) );
+  this->setClassNames ( & ( md->getClassNames ( "train" ) ) );
   
   
   this->initFromConfig( _conf ); 
   this->initFromConfig( _conf ); 
 }
 }