Salome HOME
Minor changes.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_GeoreferencementDlg.h
index 52879a486bb7784b8954af3a0dbc302013f5fa75..399ddfc25df558cd05193979c33a474957b87acd 100644 (file)
@@ -52,8 +52,8 @@ public:
 
     QString Name;
 
-    ProfileGeoData() :
-      isEmpty( true ), isIncomplete( false ) {}
+    ProfileGeoData( const QString& theName ) :
+      Name( theName ), isEmpty( true ), isIncomplete( false ) {}
 
     ProfileGeoData( const QString& theName,
                     const QString& theXg, const QString& theYg, 
@@ -62,7 +62,7 @@ public:
     ProfileGeoData( const QString& theName,
                     double theXg, double theYg, 
                     double theXd, double theYd )
-      : Name( theName), Xg( theXg ), Yg( theYg ), Xd( theXd ), Yd( theYd ),
+      : Name( theName ), Xg( theXg ), Yg( theYg ), Xd( theXd ), Yd( theYd ),
       isIncomplete(false), isEmpty(false) {}
   };
   typedef QList<ProfileGeoData> ProfilesGeoDataList;