Remove unused constant

wilder
Gustavo Carneiro 6 years ago committed by Kurt Hindenburg
parent b6e8517756
commit 98c664d16d
  1. 4
      src/terminalDisplay/TerminalDisplay.cpp
  2. 2
      src/terminalDisplay/TerminalPainter.cpp

@ -94,10 +94,6 @@ using namespace Konsole;
"abcdefgjijklmnopqrstuvwxyz" \
"0123456789./+@"
// we use this to force QPainter to display text in LTR mode
// more information can be found in: https://unicode.org/reports/tr9/
const QChar LTR_OVERRIDE_CHAR(0x202D);
inline int TerminalDisplay::loc(int x, int y) const {
if (y < 0 || y > _lines) {
qDebug() << "Y: " << y << "Lines" << _lines;

@ -41,6 +41,8 @@
#include <QPen>
#include <QDebug>
// we use this to force QPainter to display text in LTR mode
// more information can be found in: https://unicode.org/reports/tr9/
const QChar LTR_OVERRIDE_CHAR(0x202D);
namespace Konsole

Loading…
Cancel
Save