From 13ec7e4b74c5bd756e7eb6b0774838d2280d04c1 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Thu, 5 Apr 2007 08:10:22 +0000 Subject: [PATCH] Fix bug 3420 by Uwe and Enrico. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17726 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QDelimiterDialog.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/QDelimiterDialog.C b/src/frontends/qt4/QDelimiterDialog.C index cdd70ea744..82102e9e16 100644 --- a/src/frontends/qt4/QDelimiterDialog.C +++ b/src/frontends/qt4/QDelimiterDialog.C @@ -76,7 +76,7 @@ string fix_name(const string & str, bool big) return "/"; if (str == "backslash") return "\\"; - if (str == "empty") + if (str.empty()) return "."; if (!big || str == "(" || str == ")" || str == "[" || str == "]") return str; -- 2.39.2