diff --git a/Applications/Util/otbRescale.cxx b/Applications/Util/otbRescale.cxx
index b2a7679e0b7c562675828b0f27926b2d5fff3404..76e49af57a58c6230e11c54b518730ce6faf8a71 100644
--- a/Applications/Util/otbRescale.cxx
+++ b/Applications/Util/otbRescale.cxx
@@ -121,13 +121,10 @@ private:
   }
   
   RescaleImageFilterType::Pointer m_RescaleFilter;
-  MinMaxFilterType::Pointer m_MinMaxFilter;
+  MinMaxFilterType::Pointer       m_MinMaxFilter;
 };
 
-
-
 }
 }
 
 OTB_APPLICATION_EXPORT(otb::Wrapper::Rescale)
-
diff --git a/Code/ApplicationEngine/otbWrapperApplication.h b/Code/ApplicationEngine/otbWrapperApplication.h
index 06c68defbc94ed40cf14acd0d924e56cba2e9080..8f3e24ed62d1d729334e44f174a810dc4a945096 100644
--- a/Code/ApplicationEngine/otbWrapperApplication.h
+++ b/Code/ApplicationEngine/otbWrapperApplication.h
@@ -41,9 +41,9 @@ namespace Wrapper
 {
 public:
   /** Standard class typedefs. */
-  typedef Application Self;
-  typedef itk::Object Superclass;
-  typedef itk::SmartPointer<Self> Pointer;
+  typedef Application                   Self;
+  typedef itk::Object                   Superclass;
+  typedef itk::SmartPointer<Self>       Pointer;
   typedef itk::SmartPointer<const Self> ConstPointer;
 
   /** Defining ::New() static method */
@@ -355,15 +355,15 @@ private:
   Application(const Application &); //purposely not implemented
   void operator =(const Application&); //purposely not implemented
 
-  std::string m_Name;
-  std::string m_Description;
-  ParameterGroup::Pointer m_ParameterList;
-  itk::ProcessObject::Pointer m_CurrentProcess;
+  std::string                       m_Name;
+  std::string                       m_Description;
+  ParameterGroup::Pointer           m_ParameterList;
+  itk::ProcessObject::Pointer       m_CurrentProcess;
   std::vector<itk::ProcessObject *> m_InternalProcessList;
-  std::vector<std::string> m_InternalProcessListName;
-  unsigned int m_WroteOutput;
+  std::vector<std::string>          m_InternalProcessListName;
+  unsigned int                      m_WroteOutput;
 
-  itk::Logger::Pointer m_Logger;
+  itk::Logger::Pointer              m_Logger;
 
 }; //end class
 
diff --git a/Code/Wrappers/QtWidget/itkQtProgressBar.cxx b/Code/Wrappers/QtWidget/itkQtProgressBar.cxx
index 602cff4f57fed29d2b07d9744a63ad2f22ae04a1..534eaa3e70f283343cc50d851f49e2b0c5543525 100644
--- a/Code/Wrappers/QtWidget/itkQtProgressBar.cxx
+++ b/Code/Wrappers/QtWidget/itkQtProgressBar.cxx
@@ -52,7 +52,7 @@ void
 QtProgressBar::ProcessEvent( itk::Object * caller,
                              const itk::EventObject & event )
 {
-  if( typeid( itk::ProgressEvent )   ==  typeid( event ) )
+  if( typeid( itk::ProgressEvent ) == typeid( event ) )
     {
     ::itk::ProcessObject::Pointer  process =
       dynamic_cast< itk::ProcessObject *>( caller );
@@ -68,7 +68,7 @@ void
 QtProgressBar::ConstProcessEvent( const itk::Object * caller,
                                   const itk::EventObject & event )
 {
-  if( typeid( itk::ProgressEvent )   ==  typeid( event ) )
+  if( typeid( itk::ProgressEvent ) == typeid( event ) )
     {
     itk::ProcessObject::ConstPointer  process =
       dynamic_cast< const itk::ProcessObject *>( caller );
@@ -89,5 +89,3 @@ QtProgressBar::Observe( itk::Object *caller )
 }
 
 } // end namespace fltk
-
-
diff --git a/Code/Wrappers/QtWidget/itkQtProgressBar.h b/Code/Wrappers/QtWidget/itkQtProgressBar.h
index 497dd2f4f7bbcea9a56d5704498274d48ae3aa23..8b87307833f1a10944bf4c06f76a00d414dc465a 100644
--- a/Code/Wrappers/QtWidget/itkQtProgressBar.h
+++ b/Code/Wrappers/QtWidget/itkQtProgressBar.h
@@ -19,7 +19,6 @@
 
 namespace itk {
 
-
 class QtProgressBar : public ::QProgressBar
 {
   Q_OBJECT