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

@@ -186,7 +186,6 @@ void Session::openTeletype(int fd)
SLOT(onReceiveBlock(const char*,int)));
connect(_emulation, SIGNAL(sendData(const char*,int)), _shellProcess,
SLOT(sendData(const char*,int)));
connect(_emulation, SIGNAL(lockPtyRequest(bool)), _shellProcess, SLOT(lockPty(bool)));
connect(_emulation, SIGNAL(useUtf8Request(bool)), _shellProcess, SLOT(setUtf8Mode(bool)));
connect(_shellProcess, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(done(int,QProcess::ExitStatus)));
connect(_emulation, SIGNAL(imageSizeChanged(int,int)), this, SLOT(updateWindowSize(int,int)));