From 8ab8e5edc0b76c0534d1cfa348e2ae2a247a5584 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Thu, 23 May 2013 01:32:45 -0500 Subject: Fix incorrect characters. --- lib/kotext/KoAutoFormat.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/kotext/KoAutoFormat.cpp') diff --git a/lib/kotext/KoAutoFormat.cpp b/lib/kotext/KoAutoFormat.cpp index 8205b6d22..037d87f13 100644 --- a/lib/kotext/KoAutoFormat.cpp +++ b/lib/kotext/KoAutoFormat.cpp @@ -335,7 +335,7 @@ void KoAutoFormat::readConfig(bool force) if( beginDoubleQuote.isEmpty()) { if( m_typographicDefaultDoubleQuotes.begin.isNull()) - m_typographicDoubleQuotes.begin = TQChar('�'); + m_typographicDoubleQuotes.begin = TQChar('«'); else m_typographicDoubleQuotes.begin = m_typographicDefaultDoubleQuotes.begin; } @@ -345,7 +345,7 @@ void KoAutoFormat::readConfig(bool force) if( endDoubleQuote.isEmpty() ) { if( m_typographicDefaultDoubleQuotes.end.isNull()) - m_typographicDoubleQuotes.end = TQChar('�'); + m_typographicDoubleQuotes.end = TQChar('»'); else m_typographicDoubleQuotes.end = m_typographicDefaultDoubleQuotes.end; } @@ -1654,11 +1654,11 @@ KCommand * KoAutoFormat::doAutoReplaceNumber( KoTextCursor* textEditCursor, KoTe textdoc->setSelectionEnd( KoTextDocument::HighlightSelection, &cursor ); TQString replacement; if( word == TQString("1/2") ) - replacement=TQString("�"); + replacement=TQString("½"); else if (word == TQString("1/4") ) - replacement=TQString("�"); + replacement=TQString("¼"); else if (word == TQString("3/4") ) - replacement=TQString("�"); + replacement=TQString("¾"); TQString cmdName = i18n("Autocorrect for Fraction"); KCommand *cmd =txtObj->replaceSelectionCommand( textEditCursor, replacement, cmdName, -- cgit v1.2.3