]> git.lyx.org Git - features.git/commitdiff
fix thinko
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Mon, 26 Feb 2007 15:29:04 +0000 (15:29 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Mon, 26 Feb 2007 15:29:04 +0000 (15:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17363 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QLPainter.C

index a7761ae892a21cb65c18c5f1432861f3b7149515..c7e0f7f811d774d2aa929ac51a0ca417e39e8708 100644 (file)
@@ -172,7 +172,7 @@ void QLPainter::image(int x, int y, int w, int h, graphics::Image const & i)
 
 int QLPainter::text(int x, int y, char_type c, LyXFont const & f)
 {
-       docstring s(c, 1);
+       docstring s(1, c);
        return text(x, y, s, f);
 }