From 309caac96343554a84e635556f31d0d64b84d9e2 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 7 Sep 2010 19:03:28 +0000 Subject: [PATCH] Fix whitespace bug reported by Bennett git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35324 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index bb3d3d1856..c485856e73 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -2689,7 +2689,7 @@ void GuiView::dispatchVC(FuncRequest const & cmd) LYXERR(Debug::LYXVC, "Launching comparison for fetched revisions:\n" << f1 << "\n" << f2 << "\n" ); - string par = "compare run " + f1 + " " + f2; + string par = "compare run " + quoteName(f1) + " " + quoteName(f2); lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, par)); break; } -- 2.39.5