From: rkv Date: Thu, 28 Nov 2013 13:02:57 +0000 (+0000) Subject: Fix for the bug #46: latitude and longitude limits: latitude max is limited by 89... X-Git-Tag: issue_132_11_28~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7417316f226b67abf0565ce2d0b9e3962a86f5a2;p=modules%2Fhydro.git Fix for the bug #46: latitude and longitude limits: latitude max is limited by 89 now. --- diff --git a/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx b/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx index d389433f..798b9595 100644 --- a/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx +++ b/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx @@ -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 );