summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sc/source/ui/namedlg/namepast.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/sc/source/ui/namedlg/namepast.cxx b/sc/source/ui/namedlg/namepast.cxx
index 491c69e0f7ba..63ddeccd0ab8 100644
--- a/sc/source/ui/namedlg/namepast.cxx
+++ b/sc/source/ui/namedlg/namepast.cxx
@@ -26,6 +26,7 @@
#include <scui_def.hxx>
#include <globstr.hrc>
#include <scresid.hxx>
+#include <compiler.hxx>
ScNamePasteDlg::ScNamePasteDlg(weld::Window * pParent, ScDocShell* pShell)
: GenericDialogController(pParent, "modules/scalc/ui/insertname.ui", "InsertNameDialog")
@@ -80,7 +81,11 @@ IMPL_LINK(ScNamePasteDlg, ButtonHdl, weld::Button&, rButton, void)
if (rLine.aScope == aGlobalScope)
maSelectedNames.push_back(rLine.aName);
else
- maSelectedNames.push_back(rLine.aScope + m_aSheetSep + rLine.aName);
+ {
+ OUString aSheet( rLine.aScope);
+ ScCompiler::CheckTabQuotes( aSheet);
+ maSelectedNames.push_back( aSheet + m_aSheetSep + rLine.aName);
+ }
}
m_xDialog->response(BTN_PASTE_NAME);
}