]> git.lyx.org Git - lyx.git/commitdiff
Fix bug 3420 by Uwe and Enrico.
authorAbdelrazak Younes <younes@lyx.org>
Thu, 5 Apr 2007 08:10:22 +0000 (08:10 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Thu, 5 Apr 2007 08:10:22 +0000 (08:10 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17726 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QDelimiterDialog.C

index cdd70ea7448fb99a0d4456fe9b92295c77648f54..82102e9e16e2f0c45db2b59f26a5ed0ebc45ba51 100644 (file)
@@ -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;