Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
44ea9307
Commit
44ea9307
authored
Oct 18, 2020
by
Gustavo Carneiro
Committed by
Kurt Hindenburg
Oct 20, 2020
Browse files
Remove not implemented method.
parent
4c97514f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Emulation.cpp
View file @
44ea9307
...
...
@@ -242,15 +242,6 @@ void Emulation::sendKeyEvent(QKeyEvent *ev)
}
}
void
Emulation
::
sendMouseEvent
(
int
/*buttons*/
,
int
/*column*/
,
int
/*row*/
,
int
/*eventType*/
)
{
// default implementation does nothing
}
/*
We are doing code conversion from locale to unicode first.
*/
void
Emulation
::
receiveData
(
const
char
*
text
,
int
length
)
{
bufferedUpdate
();
...
...
src/Emulation.h
View file @
44ea9307
...
...
@@ -218,7 +218,7 @@ public Q_SLOTS:
* Converts information about a mouse event into an xterm-compatible escape
* sequence and emits the character sequence via sendData()
*/
virtual
void
sendMouseEvent
(
int
buttons
,
int
column
,
int
line
,
int
eventType
);
virtual
void
sendMouseEvent
(
int
buttons
,
int
column
,
int
line
,
int
eventType
)
=
0
;
/**
* Sends a string of characters to the foreground terminal process.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment