From a017132d016b8a47e500fd72d4d8665dae8e9206 Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 8 Nov 2005 10:23:09 +0000 Subject: [PATCH] Fix for bug 10369: Mandrake porting: absent file name in the Export table dialog --- src/VISUGUI/VisuGUI.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.2