From: Abdelrazak Younes Date: Thu, 5 Apr 2007 08:10:22 +0000 (+0000) Subject: Fix bug 3420 by Uwe and Enrico. X-Git-Tag: 1.6.10~10337 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=13ec7e4b74c5bd756e7eb6b0774838d2280d04c1;p=lyx.git Fix bug 3420 by Uwe and Enrico. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17726 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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;