From: rkv Date: Thu, 5 Dec 2013 07:33:16 +0000 (+0000) Subject: Fix for the bug #46: latitude and longitude limits. X-Git-Tag: BR_hydro_v_0_4~35 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7e4ffaebcbf46f86cf1c98f9648c62227a05d885;p=modules%2Fhydro.git Fix for the bug #46: latitude and longitude limits. --- diff --git a/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx b/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx index 692c16ff..30c6a9f9 100644 --- a/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx +++ b/src/HYDROGUI/HYDROGUI_ImportImageDlg.cxx @@ -183,7 +183,7 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co << aPointXSecLabel << aPointYSecLabel << aPointLatLabel << aPointLonLabel; - QtxIntSpinBox* aPointXDeg = new QtxIntSpinBox( -180, 180, 1, myTransformGroup ); + QtxIntSpinBox* aPointXDeg = new QtxIntSpinBox( -179, 179, 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 );