From: jfa Date: Tue, 8 Nov 2005 10:23:09 +0000 (+0000) Subject: Fix for bug 10369: Mandrake porting: absent file name in the Export table dialog X-Git-Tag: V3_1_0a3~11 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a017132d016b8a47e500fd72d4d8665dae8e9206;p=modules%2Fvisu.git Fix for bug 10369: Mandrake porting: absent file name in the Export table dialog --- diff --git a/src/VISUGUI/VisuGUI.cxx b/src/VISUGUI/VisuGUI.cxx index c7f18988..4bb3a21e 100644 --- a/src/VISUGUI/VisuGUI.cxx +++ b/src/VISUGUI/VisuGUI.cxx @@ -339,7 +339,7 @@ OnExportTableToFile() aTitle = aTabAttr->GetTitle().c_str(); } aTitle.simplifyWhiteSpace(); - aTitle = aTitle.replace(QRegExp(" "), "_"); + aTitle = aTitle.replace(QRegExp(" "), "_").replace(QRegExp("\\*"), "" ); // get default path for the file SUIT_ResourceMgr* aResourceMgr = GetResourceMgr();