Clarify, re: E-mail.

Change-Id: Ic42e2779bf481f6bd12077e340f45f0aaeea5e12
pull/420/head
Michael Meeks 2020-10-26 19:03:39 +00:00
parent 7886d63349
commit 6bf4040bcb
3 changed files with 16 additions and 3 deletions

View File

@ -32,6 +32,5 @@ states:
Signed-off-by: Random J Developer <random@developer.example.org>
using your real name and the email address you sent the original email
you used to send the Online Contributor Representation & Certificate
of Origin to us (sorry, no pseudonyms or anonymous contributions.)
using your real name and the email address (sorry, no pseudonyms
or anonymous contributions.)

View File

@ -112,6 +112,14 @@ void ChildSession::disconnect()
}
bool ChildSession::_handleInput(const char *buffer, int length)
{
bool ret = doHandleInput(buffer, length);
getLOKitDocument()->setView(GlobalNastyViewId);
return ret;
}
bool ChildSession::doHandleInput(const char *buffer, int length)
{
LOG_TRC(getName() << ": handling [" << getAbbreviatedMessage(buffer, length) << "].");
const std::string firstLine = getFirstLine(buffer, length);

View File

@ -1228,6 +1228,8 @@ private:
// Only save the options on opening the document.
// No support for changing them after opening a document.
_renderOpts = renderOpts;
GlobalNastyViewId = _loKitDocument->createView("" /* ?? */);
}
else
{
@ -1789,6 +1791,10 @@ public:
return -1;
}
#endif
// No idea if this is slightly fair ;-)
getLOKitDocument()->setView(GlobalNastyViewId);
// Report the number of events we processed.
return eventsSignalled;
}