From: mkr Date: Mon, 15 Jun 2015 07:59:09 +0000 (+0300) Subject: refs #560: correct dialog title for export Strickler table operation. X-Git-Tag: v1.4.1~3^2~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=dd3c5242eccf61f3b78ce107fa56e69556b42f1d;p=modules%2Fhydro.git refs #560: correct dialog title for export Strickler table operation. --- diff --git a/src/HYDROGUI/HYDROGUI_StricklerTableOp.cxx b/src/HYDROGUI/HYDROGUI_StricklerTableOp.cxx index 7cecf388..7f021249 100644 --- a/src/HYDROGUI/HYDROGUI_StricklerTableOp.cxx +++ b/src/HYDROGUI/HYDROGUI_StricklerTableOp.cxx @@ -33,7 +33,8 @@ HYDROGUI_StricklerTableOp::HYDROGUI_StricklerTableOp( HYDROGUI_Module* theModule : HYDROGUI_Operation( theModule ), myType( theType ) { - setName( isEdit() ? tr( "EDIT_STRICKLER_TABLE" ) : tr( "IMPORT_STRICKLER_TABLE" ) ); + setName( isEdit() ? tr( "EDIT_STRICKLER_TABLE" ) : + ( isImport() ? tr( "IMPORT_STRICKLER_TABLE" ) : tr( "EXPORT_STRICKLER_TABLE" ) ) ); } HYDROGUI_StricklerTableOp::~HYDROGUI_StricklerTableOp()