]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Fix for the bug #46: latitude and longitude limits: latitude max is limited by 89...
authorrkv <rkv@opencascade.com>
Thu, 28 Nov 2013 13:02:57 +0000 (13:02 +0000)
committerrkv <rkv@opencascade.com>
Thu, 28 Nov 2013 13:02:57 +0000 (13:02 +0000)
src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx

index d389433fa1bc9d865d9905f96e44b3956f160faa..798b95955e26d139e2e894d290daef98a2c9b822 100644 (file)
@@ -184,7 +184,7 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co
                     << aPointLatLabel << aPointLonLabel;
 
     QtxIntSpinBox* aPointXDeg = new QtxIntSpinBox( -180, 180, 1, myTransformGroup );
-    QtxIntSpinBox* aPointYDeg = new QtxIntSpinBox( 0, 90, 1, myTransformGroup );
+    QtxIntSpinBox* aPointYDeg = new QtxIntSpinBox( 0, 89, 1, myTransformGroup );
     QtxIntSpinBox* aPointXMin = new QtxIntSpinBox( 0, 59, 1, myTransformGroup );
     QtxIntSpinBox* aPointYMin = new QtxIntSpinBox( 0, 59, 1, myTransformGroup );
     QtxDoubleSpinBox* aPointXSec = new QtxDoubleSpinBox( 0, 59.9999, 1, 4, 4, myTransformGroup );