Remove the left-over & unused code for supporting "Scroll Lock" key

It is decided to not reimplement this feature in KDE4 konsole:

  * It is non-trivial work to implement it correctly
  * It annoyed some users when it was available in KDE3 konsole
  * Not many users want this feature back

This is a follow up of commit cee0ce539b

CCBUG:172271
REVIEW:104156
This commit is contained in:
Jekyll Wu
2012-03-02 00:30:31 +08:00
parent 52406f651d
commit 78dbf8f1c1
14 changed files with 0 additions and 220 deletions

View File

@@ -282,17 +282,6 @@ void Pty::dataReceived()
emit receivedData(data.constData(), data.count());
}
void Pty::lockPty(bool lock)
{
Q_UNUSED(lock);
//TODO: Support for locking the Pty
//if (lock)
//suspend();
//else
//resume();
}
int Pty::foregroundProcessGroup() const
{
int pid = tcgetpgrp(pty()->masterFd());