diff --git a/src/TerminalDisplay.cpp b/src/TerminalDisplay.cpp index cf9e0c0e..885becdf 100644 --- a/src/TerminalDisplay.cpp +++ b/src/TerminalDisplay.cpp @@ -626,10 +626,6 @@ void TerminalDisplay::setKeyboardCursorShape(Enum::CursorShapeEnum shape) { _cursorShape = shape; } -Enum::CursorShapeEnum TerminalDisplay::keyboardCursorShape() const -{ - return _cursorShape; -} void TerminalDisplay::setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking) { @@ -665,10 +661,6 @@ void TerminalDisplay::setKeyboardCursorColor(const QColor& color) { _cursorColor = color; } -QColor TerminalDisplay::keyboardCursorColor() const -{ - return _cursorColor; -} void TerminalDisplay::setOpacity(qreal opacity) { diff --git a/src/TerminalDisplay.h b/src/TerminalDisplay.h index b0f8eb48..8c99672d 100644 --- a/src/TerminalDisplay.h +++ b/src/TerminalDisplay.h @@ -174,10 +174,6 @@ public: * Defaults to BlockCursor */ void setKeyboardCursorShape(Enum::CursorShapeEnum shape); - /** - * Returns the shape of the keyboard cursor. See setKeyboardCursorShape() - */ - Enum::CursorShapeEnum keyboardCursorShape() const; /** * Sets the Cursor Style (DECSCUSR) via escape sequences @@ -206,13 +202,6 @@ public: */ void setKeyboardCursorColor(const QColor &color); - /** - * Returns the color of the keyboard cursor, or an invalid color if the keyboard - * cursor color is set to change according to the foreground color of the character - * underneath it. - */ - QColor keyboardCursorColor() const; - /** * Returns the number of lines of text which can be displayed in the widget. *